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" |
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
159 | 159 |
160 void ShowCertExportDialog(TabContents* tab_contents, | 160 void ShowCertExportDialog(TabContents* tab_contents, |
161 gfx::NativeWindow parent, | 161 gfx::NativeWindow parent, |
162 net::X509Certificate::OSCertHandle cert) { | 162 net::X509Certificate::OSCertHandle cert) { |
163 // TODO(saintlou); | 163 // TODO(saintlou); |
164 NOTIMPLEMENTED(); | 164 NOTIMPLEMENTED(); |
165 } | 165 } |
166 #endif | 166 #endif |
167 | 167 |
168 // static | 168 // static |
169 void BookmarkEditor::Show(gfx::NativeWindow parent_hwnd, | 169 void BookmarkEditor::Show(gfx::NativeWindow parent_window, |
flackr
2011/09/23 17:57:07
You might mean to be defining BookmarkEditor::Show
oshima
2011/09/23 18:42:04
This is stubbed out for aura. Build doesn't pass t
| |
170 Profile* profile, | 170 Profile* profile, |
171 const BookmarkNode* parent, | |
172 const EditDetails& details, | 171 const EditDetails& details, |
173 Configuration configuration) { | 172 Configuration configuration) { |
174 // TODO(beng); | 173 // TODO(beng); |
175 NOTIMPLEMENTED(); | 174 NOTIMPLEMENTED(); |
176 } | 175 } |
177 | 176 |
178 namespace importer { | 177 namespace importer { |
179 | 178 |
180 void ShowImportProgressDialog(gfx::NativeWindow parent_window, | 179 void ShowImportProgressDialog(gfx::NativeWindow parent_window, |
181 uint16 items, | 180 uint16 items, |
182 ImporterHost* importer_host, | 181 ImporterHost* importer_host, |
183 ImporterObserver* importer_observer, | 182 ImporterObserver* importer_observer, |
184 const SourceProfile& source_profile, | 183 const SourceProfile& source_profile, |
185 Profile* target_profile, | 184 Profile* target_profile, |
186 bool first_run) { | 185 bool first_run) { |
187 // TODO(beng); | 186 // TODO(beng); |
188 NOTIMPLEMENTED(); | 187 NOTIMPLEMENTED(); |
189 } | 188 } |
190 | 189 |
191 } // namespace importer | 190 } // namespace importer |
192 | 191 |
193 // static | 192 // static |
194 void ExternalProtocolHandler::RunExternalProtocolDialog( | 193 void ExternalProtocolHandler::RunExternalProtocolDialog( |
195 const GURL& url, int render_process_host_id, int routing_id) { | 194 const GURL& url, int render_process_host_id, int routing_id) { |
196 } | 195 } |
197 | |
OLD | NEW |