| 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" |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 namespace browser { | 36 namespace browser { |
| 37 | 37 |
| 38 void ShowAboutIPCDialog() { | 38 void ShowAboutIPCDialog() { |
| 39 // TODO(beng): | 39 // TODO(beng): |
| 40 NOTIMPLEMENTED(); | 40 NOTIMPLEMENTED(); |
| 41 } | 41 } |
| 42 | 42 |
| 43 } // namespace browser | 43 } // namespace browser |
| 44 | 44 |
| 45 #if defined(OS_WIN) | 45 #if defined(OS_WIN) |
| 46 void ShowCertificateViewer(gfx::NativeWindow parent, | 46 void ShowCertificateViewer(content::WebContents* web_contents, |
| 47 gfx::NativeWindow parent, |
| 47 net::X509Certificate* cert) { | 48 net::X509Certificate* cert) { |
| 48 // No certificate viewer on Windows. | 49 // No certificate viewer on Windows. |
| 49 } | 50 } |
| 50 #endif // OS_WIN | 51 #endif // OS_WIN |
| 51 | 52 |
| 52 namespace importer { | 53 namespace importer { |
| 53 | 54 |
| 54 void ShowImportProgressDialog(uint16 items, | 55 void ShowImportProgressDialog(uint16 items, |
| 55 ImporterHost* importer_host, | 56 ImporterHost* importer_host, |
| 56 ImporterObserver* importer_observer, | 57 ImporterObserver* importer_observer, |
| 57 const SourceProfile& source_profile, | 58 const SourceProfile& source_profile, |
| 58 Profile* target_profile, | 59 Profile* target_profile, |
| 59 bool first_run) { | 60 bool first_run) { |
| 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 |