| 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/external_protocol/external_protocol_handler.h" | 7 #include "chrome/browser/external_protocol/external_protocol_handler.h" |
| 8 #include "chrome/browser/importer/importer_progress_dialog.h" | 8 #include "chrome/browser/importer/importer_progress_dialog.h" |
| 9 #include "ui/gfx/native_widget_types.h" | 9 #include "ui/gfx/native_widget_types.h" |
| 10 | 10 |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 #endif | 71 #endif |
| 72 | 72 |
| 73 } // namespace browser | 73 } // namespace browser |
| 74 | 74 |
| 75 #if defined(OS_WIN) | 75 #if defined(OS_WIN) |
| 76 void ShowCertificateViewer(gfx::NativeWindow parent, | 76 void ShowCertificateViewer(gfx::NativeWindow parent, |
| 77 net::X509Certificate* cert) { | 77 net::X509Certificate* cert) { |
| 78 // No certificate viewer on Windows. | 78 // No certificate viewer on Windows. |
| 79 } | 79 } |
| 80 | 80 |
| 81 // static | |
| 82 FirstRunBubble* FirstRunBubble::Show( | |
| 83 Profile* profile, | |
| 84 views::Widget* parent, | |
| 85 const gfx::Rect& position_relative_to, | |
| 86 views::BubbleBorder::ArrowLocation arrow_location, | |
| 87 FirstRun::BubbleType bubble_type) { | |
| 88 // TODO(beng); | |
| 89 NOTIMPLEMENTED(); | |
| 90 return NULL; | |
| 91 } | |
| 92 #else | 81 #else |
| 93 void ShowCertSelectFileDialog(SelectFileDialog* select_file_dialog, | 82 void ShowCertSelectFileDialog(SelectFileDialog* select_file_dialog, |
| 94 SelectFileDialog::Type type, | 83 SelectFileDialog::Type type, |
| 95 const FilePath& suggested_path, | 84 const FilePath& suggested_path, |
| 96 TabContents* tab_contents, | 85 TabContents* tab_contents, |
| 97 gfx::NativeWindow parent, | 86 gfx::NativeWindow parent, |
| 98 void* params) { | 87 void* params) { |
| 99 // TODO(saintlou); | 88 // TODO(saintlou); |
| 100 NOTIMPLEMENTED(); | 89 NOTIMPLEMENTED(); |
| 101 } | 90 } |
| (...skipping 18 matching lines...) Expand all Loading... |
| 120 // TODO(beng); | 109 // TODO(beng); |
| 121 NOTIMPLEMENTED(); | 110 NOTIMPLEMENTED(); |
| 122 } | 111 } |
| 123 | 112 |
| 124 } // namespace importer | 113 } // namespace importer |
| 125 | 114 |
| 126 // static | 115 // static |
| 127 void ExternalProtocolHandler::RunExternalProtocolDialog( | 116 void ExternalProtocolHandler::RunExternalProtocolDialog( |
| 128 const GURL& url, int render_process_host_id, int routing_id) { | 117 const GURL& url, int render_process_host_id, int routing_id) { |
| 129 } | 118 } |
| OLD | NEW |