| 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 #include "chrome/browser/external_protocol/external_protocol_handler.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" | 8 #include "ui/gfx/native_widget_types.h" |
| 10 | 9 |
| 11 #if defined(OS_WIN) | 10 #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" | 11 #include "chrome/browser/ui/certificate_dialogs.h" |
| 17 #endif | 12 #endif |
| 18 | 13 |
| 19 #if defined(USE_NSS) | 14 #if defined(USE_NSS) |
| 20 #include "chrome/browser/ui/crypto_module_password_dialog.h" | 15 #include "chrome/browser/ui/crypto_module_password_dialog.h" |
| 21 #endif | 16 #endif |
| 22 | 17 |
| 23 class SSLClientAuthHandler; | 18 class SSLClientAuthHandler; |
| 24 | 19 |
| 25 namespace content { | 20 namespace content { |
| (...skipping 12 matching lines...) Expand all Loading... |
| 38 | 33 |
| 39 namespace chrome { | 34 namespace chrome { |
| 40 | 35 |
| 41 void ShowAboutIPCDialog() { | 36 void ShowAboutIPCDialog() { |
| 42 // TODO(beng): | 37 // TODO(beng): |
| 43 NOTIMPLEMENTED(); | 38 NOTIMPLEMENTED(); |
| 44 } | 39 } |
| 45 | 40 |
| 46 } // namespace chrome | 41 } // namespace chrome |
| 47 | 42 |
| 48 namespace importer { | |
| 49 | |
| 50 void ShowImportProgressDialog(uint16 items, | |
| 51 ImporterHost* importer_host, | |
| 52 ImporterObserver* importer_observer, | |
| 53 const SourceProfile& source_profile, | |
| 54 Profile* target_profile, | |
| 55 bool first_run) { | |
| 56 // TODO(beng); | |
| 57 NOTIMPLEMENTED(); | |
| 58 } | |
| 59 | |
| 60 } // namespace importer | |
| 61 | |
| 62 #if !defined(OS_CHROMEOS) | 43 #if !defined(OS_CHROMEOS) |
| 63 // static | 44 // static |
| 64 void ExternalProtocolHandler::RunExternalProtocolDialog( | 45 void ExternalProtocolHandler::RunExternalProtocolDialog( |
| 65 const GURL& url, int render_process_host_id, int routing_id) { | 46 const GURL& url, int render_process_host_id, int routing_id) { |
| 66 } | 47 } |
| 67 #endif | 48 #endif |
| OLD | NEW |