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 17 matching lines...) Expand all Loading... |
28 class HttpNetworkSession; | 28 class HttpNetworkSession; |
29 class SSLCertRequestInfo; | 29 class SSLCertRequestInfo; |
30 class X509Certificate; | 30 class X509Certificate; |
31 } | 31 } |
32 namespace views { | 32 namespace views { |
33 class Widget; | 33 class Widget; |
34 } | 34 } |
35 | 35 |
36 namespace browser { | 36 namespace browser { |
37 | 37 |
38 #if defined(OS_WIN) | |
39 void ShowSSLClientCertificateSelector( | |
40 TabContentsWrapper* parent, | |
41 const net::HttpNetworkSession* network_session, | |
42 net::SSLCertRequestInfo* cert_request_info, | |
43 const base::Callback<void(net::X509Certificate*)>& callback) { | |
44 // TODO(beng): | |
45 NOTIMPLEMENTED(); | |
46 } | |
47 #endif | |
48 | |
49 void ShowAboutIPCDialog() { | 38 void ShowAboutIPCDialog() { |
50 // TODO(beng): | 39 // TODO(beng): |
51 NOTIMPLEMENTED(); | 40 NOTIMPLEMENTED(); |
52 } | 41 } |
53 | 42 |
54 } // namespace browser | 43 } // namespace browser |
55 | 44 |
56 #if defined(OS_WIN) | 45 #if defined(OS_WIN) |
57 void ShowCertificateViewer(gfx::NativeWindow parent, | 46 void ShowCertificateViewer(gfx::NativeWindow parent, |
58 net::X509Certificate* cert) { | 47 net::X509Certificate* cert) { |
(...skipping 12 matching lines...) Expand all Loading... |
71 // TODO(beng); | 60 // TODO(beng); |
72 NOTIMPLEMENTED(); | 61 NOTIMPLEMENTED(); |
73 } | 62 } |
74 | 63 |
75 } // namespace importer | 64 } // namespace importer |
76 | 65 |
77 // static | 66 // static |
78 void ExternalProtocolHandler::RunExternalProtocolDialog( | 67 void ExternalProtocolHandler::RunExternalProtocolDialog( |
79 const GURL& url, int render_process_host_id, int routing_id) { | 68 const GURL& url, int render_process_host_id, int routing_id) { |
80 } | 69 } |
OLD | NEW |