| 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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 | 88 |
| 89 } // namespace browser | 89 } // namespace browser |
| 90 | 90 |
| 91 | 91 |
| 92 void ShowCertificateViewer(gfx::NativeWindow parent, | 92 void ShowCertificateViewer(gfx::NativeWindow parent, |
| 93 net::X509Certificate* cert) { | 93 net::X509Certificate* cert) { |
| 94 // TODO(beng); | 94 // TODO(beng); |
| 95 NOTIMPLEMENTED(); | 95 NOTIMPLEMENTED(); |
| 96 } | 96 } |
| 97 | 97 |
| 98 // static | |
| 99 FirstRunBubble* FirstRunBubble::Show( | |
| 100 Profile* profile, | |
| 101 views::Widget* parent, | |
| 102 const gfx::Rect& position_relative_to, | |
| 103 views::BubbleBorder::ArrowLocation arrow_location, | |
| 104 FirstRun::BubbleType bubble_type) { | |
| 105 // TODO(beng); | |
| 106 NOTIMPLEMENTED(); | |
| 107 return NULL; | |
| 108 } | |
| 109 | |
| 110 #if !defined(OS_WIN) | 98 #if !defined(OS_WIN) |
| 111 void ShowCertSelectFileDialog(SelectFileDialog* select_file_dialog, | 99 void ShowCertSelectFileDialog(SelectFileDialog* select_file_dialog, |
| 112 SelectFileDialog::Type type, | 100 SelectFileDialog::Type type, |
| 113 const FilePath& suggested_path, | 101 const FilePath& suggested_path, |
| 114 TabContents* tab_contents, | 102 TabContents* tab_contents, |
| 115 gfx::NativeWindow parent, | 103 gfx::NativeWindow parent, |
| 116 void* params) { | 104 void* params) { |
| 117 // TODO(saintlou); | 105 // TODO(saintlou); |
| 118 NOTIMPLEMENTED(); | 106 NOTIMPLEMENTED(); |
| 119 } | 107 } |
| (...skipping 18 matching lines...) Expand all Loading... |
| 138 // TODO(beng); | 126 // TODO(beng); |
| 139 NOTIMPLEMENTED(); | 127 NOTIMPLEMENTED(); |
| 140 } | 128 } |
| 141 | 129 |
| 142 } // namespace importer | 130 } // namespace importer |
| 143 | 131 |
| 144 // static | 132 // static |
| 145 void ExternalProtocolHandler::RunExternalProtocolDialog( | 133 void ExternalProtocolHandler::RunExternalProtocolDialog( |
| 146 const GURL& url, int render_process_host_id, int routing_id) { | 134 const GURL& url, int render_process_host_id, int routing_id) { |
| 147 } | 135 } |
| OLD | NEW |