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/logging.h" | 5 #include "base/logging.h" |
6 | 6 |
7 #include "chrome/browser/bookmarks/bookmark_editor.h" | 7 #include "chrome/browser/bookmarks/bookmark_editor.h" |
8 #include "chrome/browser/external_protocol/external_protocol_handler.h" | 8 #include "chrome/browser/external_protocol/external_protocol_handler.h" |
9 #include "chrome/browser/first_run/first_run.h" | 9 #include "chrome/browser/first_run/first_run.h" |
10 #include "chrome/browser/first_run/first_run_import_observer.h" | 10 #include "chrome/browser/first_run/first_run_import_observer.h" |
11 #include "chrome/browser/importer/importer_progress_dialog.h" | 11 #include "chrome/browser/importer/importer_progress_dialog.h" |
12 #include "chrome/browser/ui/views/first_run_bubble.h" | 12 #include "chrome/browser/ui/views/first_run_bubble.h" |
13 #include "ui/gfx/native_widget_types.h" | 13 #include "ui/gfx/native_widget_types.h" |
14 | 14 |
15 #if !defined(OS_WIN) | 15 #if !defined(OS_WIN) |
16 #include "chrome/browser/ui/gtk/certificate_dialogs.h" | 16 #include "chrome/browser/ui/certificate_dialogs.h" |
17 #endif | 17 #endif |
18 | 18 |
19 #if defined(USE_NSS) | 19 #if defined(USE_NSS) |
20 #include "chrome/browser/ui/crypto_module_password_dialog.h" | 20 #include "chrome/browser/ui/crypto_module_password_dialog.h" |
21 #endif | 21 #endif |
22 | 22 |
23 class SSLClientAuthHandler; | 23 class SSLClientAuthHandler; |
24 class TabContents; | 24 class TabContents; |
25 class TabContentsWrapper; | 25 class TabContentsWrapper; |
26 namespace crypto { | 26 namespace crypto { |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 Profile* profile, | 88 Profile* profile, |
89 views::Widget* parent, | 89 views::Widget* parent, |
90 const gfx::Rect& position_relative_to, | 90 const gfx::Rect& position_relative_to, |
91 views::BubbleBorder::ArrowLocation arrow_location, | 91 views::BubbleBorder::ArrowLocation arrow_location, |
92 FirstRun::BubbleType bubble_type) { | 92 FirstRun::BubbleType bubble_type) { |
93 // TODO(beng); | 93 // TODO(beng); |
94 NOTIMPLEMENTED(); | 94 NOTIMPLEMENTED(); |
95 return NULL; | 95 return NULL; |
96 } | 96 } |
97 | 97 |
98 #if !defined(OS_WIN) | |
99 void ShowCertSelectFileDialog(SelectFileDialog* select_file_dialog, | |
100 SelectFileDialog::Type type, | |
101 const FilePath& suggested_path, | |
102 TabContents* tab_contents, | |
103 gfx::NativeWindow parent, | |
104 void* params) { | |
105 // TODO(saintlou); | |
106 NOTIMPLEMENTED(); | |
107 } | |
108 | |
109 void ShowCertExportDialog(TabContents* tab_contents, | |
110 gfx::NativeWindow parent, | |
111 net::X509Certificate::OSCertHandle cert) { | |
112 // TODO(saintlou); | |
113 NOTIMPLEMENTED(); | |
114 } | |
115 #endif | |
116 | |
117 namespace importer { | 98 namespace importer { |
118 | 99 |
119 void ShowImportProgressDialog(gfx::NativeWindow parent_window, | 100 void ShowImportProgressDialog(gfx::NativeWindow parent_window, |
120 uint16 items, | 101 uint16 items, |
121 ImporterHost* importer_host, | 102 ImporterHost* importer_host, |
122 ImporterObserver* importer_observer, | 103 ImporterObserver* importer_observer, |
123 const SourceProfile& source_profile, | 104 const SourceProfile& source_profile, |
124 Profile* target_profile, | 105 Profile* target_profile, |
125 bool first_run) { | 106 bool first_run) { |
126 // TODO(beng); | 107 // TODO(beng); |
127 NOTIMPLEMENTED(); | 108 NOTIMPLEMENTED(); |
128 } | 109 } |
129 | 110 |
130 } // namespace importer | 111 } // namespace importer |
131 | 112 |
132 // static | 113 // static |
133 void ExternalProtocolHandler::RunExternalProtocolDialog( | 114 void ExternalProtocolHandler::RunExternalProtocolDialog( |
134 const GURL& url, int render_process_host_id, int routing_id) { | 115 const GURL& url, int render_process_host_id, int routing_id) { |
135 } | 116 } |
OLD | NEW |