stubs_aura.cc revision 5821806d5e7f356e8fa4b058a389a808ea183019
1// Copyright (c) 2012 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "base/callback.h"
6#include "base/logging.h"
7#include "chrome/browser/external_protocol/external_protocol_handler.h"
8#include "chrome/browser/importer/importer_progress_dialog.h"
9#include "ui/gfx/native_widget_types.h"
10
11#if defined(OS_WIN)
12#include "chrome/browser/first_run/first_run.h"
13#include "chrome/browser/first_run/first_run_import_observer.h"
14#include "chrome/browser/ui/views/first_run_bubble.h"
15#else
16#include "chrome/browser/ui/certificate_dialogs.h"
17#endif
18
19#if defined(USE_NSS)
20#include "chrome/browser/ui/crypto_module_password_dialog.h"
21#endif
22
23class SSLClientAuthHandler;
24class TabContents;
25
26namespace content {
27class WebContents;
28}
29
30namespace net {
31class HttpNetworkSession;
32class SSLCertRequestInfo;
33class X509Certificate;
34}
35
36namespace views {
37class Widget;
38}
39
40namespace chrome {
41
42void ShowAboutIPCDialog() {
43  // TODO(beng):
44  NOTIMPLEMENTED();
45}
46
47}  // namespace chrome
48
49#if defined(OS_WIN)
50void ShowCertificateViewer(content::WebContents* web_contents,
51                           gfx::NativeWindow parent,
52                           net::X509Certificate* cert) {
53  // No certificate viewer on Windows.
54}
55#endif // OS_WIN
56
57namespace importer {
58
59void ShowImportProgressDialog(uint16 items,
60                              ImporterHost* importer_host,
61                              ImporterObserver* importer_observer,
62                              const SourceProfile& source_profile,
63                              Profile* target_profile,
64                              bool first_run) {
65  // TODO(beng);
66  NOTIMPLEMENTED();
67}
68
69}  // namespace importer
70
71#if !defined(OS_CHROMEOS)
72// static
73void ExternalProtocolHandler::RunExternalProtocolDialog(
74    const GURL& url, int render_process_host_id, int routing_id) {
75}
76#endif
77