OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "base/callback.h" | 5 #include "base/callback.h" |
6 #include "base/logging.h" | 6 #include "base/logging.h" |
7 | 7 |
8 #include "chrome/browser/external_protocol/external_protocol_handler.h" | 8 #include "chrome/browser/external_protocol/external_protocol_handler.h" |
9 #include "chrome/browser/importer/importer_progress_dialog.h" | 9 #include "chrome/browser/importer/importer_progress_dialog.h" |
10 #include "ui/gfx/native_widget_types.h" | 10 #include "ui/gfx/native_widget_types.h" |
11 | 11 |
12 #if defined(OS_WIN) | 12 #if defined(OS_WIN) |
13 #include "chrome/browser/first_run/first_run.h" | 13 #include "chrome/browser/first_run/first_run.h" |
14 #include "chrome/browser/first_run/first_run_import_observer.h" | 14 #include "chrome/browser/first_run/first_run_import_observer.h" |
15 #include "chrome/browser/ui/views/first_run_bubble.h" | 15 #include "chrome/browser/ui/views/first_run_bubble.h" |
16 #else | 16 #else |
17 #include "chrome/browser/ui/certificate_dialogs.h" | 17 #include "chrome/browser/ui/certificate_dialogs.h" |
18 #endif | 18 #endif |
19 | 19 |
20 #if defined(USE_NSS) | 20 #if defined(USE_NSS) |
21 #include "chrome/browser/ui/crypto_module_password_dialog.h" | 21 #include "chrome/browser/ui/crypto_module_password_dialog.h" |
22 #endif | 22 #endif |
23 | 23 |
24 class SSLClientAuthHandler; | 24 class SSLClientAuthHandler; |
25 class TabContents; | |
26 class TabContentsWrapper; | 25 class TabContentsWrapper; |
27 | 26 |
28 namespace net { | 27 namespace net { |
29 class HttpNetworkSession; | 28 class HttpNetworkSession; |
30 class SSLCertRequestInfo; | 29 class SSLCertRequestInfo; |
31 class X509Certificate; | 30 class X509Certificate; |
32 } | 31 } |
33 namespace views { | 32 namespace views { |
34 class Widget; | 33 class Widget; |
35 } | 34 } |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 // TODO(beng); | 71 // TODO(beng); |
73 NOTIMPLEMENTED(); | 72 NOTIMPLEMENTED(); |
74 } | 73 } |
75 | 74 |
76 } // namespace importer | 75 } // namespace importer |
77 | 76 |
78 // static | 77 // static |
79 void ExternalProtocolHandler::RunExternalProtocolDialog( | 78 void ExternalProtocolHandler::RunExternalProtocolDialog( |
80 const GURL& url, int render_process_host_id, int routing_id) { | 79 const GURL& url, int render_process_host_id, int routing_id) { |
81 } | 80 } |
OLD | NEW |