| 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 TabContentsWrapper; | 25 class TabContents; |
| 26 typedef TabContents TabContentsWrapper; |
| 26 | 27 |
| 27 namespace net { | 28 namespace net { |
| 28 class HttpNetworkSession; | 29 class HttpNetworkSession; |
| 29 class SSLCertRequestInfo; | 30 class SSLCertRequestInfo; |
| 30 class X509Certificate; | 31 class X509Certificate; |
| 31 } | 32 } |
| 32 namespace views { | 33 namespace views { |
| 33 class Widget; | 34 class Widget; |
| 34 } | 35 } |
| 35 | 36 |
| (...skipping 24 matching lines...) Expand all Loading... |
| 60 // TODO(beng); | 61 // TODO(beng); |
| 61 NOTIMPLEMENTED(); | 62 NOTIMPLEMENTED(); |
| 62 } | 63 } |
| 63 | 64 |
| 64 } // namespace importer | 65 } // namespace importer |
| 65 | 66 |
| 66 // static | 67 // static |
| 67 void ExternalProtocolHandler::RunExternalProtocolDialog( | 68 void ExternalProtocolHandler::RunExternalProtocolDialog( |
| 68 const GURL& url, int render_process_host_id, int routing_id) { | 69 const GURL& url, int render_process_host_id, int routing_id) { |
| 69 } | 70 } |
| OLD | NEW |