| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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" |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 | 56 |
| 57 #if defined(OS_WIN) | 57 #if defined(OS_WIN) |
| 58 void ShowCertificateViewer(gfx::NativeWindow parent, | 58 void ShowCertificateViewer(gfx::NativeWindow parent, |
| 59 net::X509Certificate* cert) { | 59 net::X509Certificate* cert) { |
| 60 // No certificate viewer on Windows. | 60 // No certificate viewer on Windows. |
| 61 } | 61 } |
| 62 #endif // OS_WIN | 62 #endif // OS_WIN |
| 63 | 63 |
| 64 namespace importer { | 64 namespace importer { |
| 65 | 65 |
| 66 void ShowImportProgressDialog(gfx::NativeWindow parent_window, | 66 void ShowImportProgressDialog(uint16 items, |
| 67 uint16 items, | |
| 68 ImporterHost* importer_host, | 67 ImporterHost* importer_host, |
| 69 ImporterObserver* importer_observer, | 68 ImporterObserver* importer_observer, |
| 70 const SourceProfile& source_profile, | 69 const SourceProfile& source_profile, |
| 71 Profile* target_profile, | 70 Profile* target_profile, |
| 72 bool first_run) { | 71 bool first_run) { |
| 73 // TODO(beng); | 72 // TODO(beng); |
| 74 NOTIMPLEMENTED(); | 73 NOTIMPLEMENTED(); |
| 75 } | 74 } |
| 76 | 75 |
| 77 } // namespace importer | 76 } // namespace importer |
| 78 | 77 |
| 79 // static | 78 // static |
| 80 void ExternalProtocolHandler::RunExternalProtocolDialog( | 79 void ExternalProtocolHandler::RunExternalProtocolDialog( |
| 81 const GURL& url, int render_process_host_id, int routing_id) { | 80 const GURL& url, int render_process_host_id, int routing_id) { |
| 82 } | 81 } |
| OLD | NEW |