| 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 // Client Auth is not implemented on Android yet. | 5 // Client Auth is not implemented on Android yet. |
| 6 #include "chrome/browser/ssl_client_certificate_selector.h" | 6 #include "chrome/browser/ssl_client_certificate_selector.h" |
| 7 | 7 |
| 8 #include "base/logging.h" | 8 #include "base/logging.h" |
| 9 | 9 |
| 10 /////////////////////////////////////////////////////////////////////////////// | 10 /////////////////////////////////////////////////////////////////////////////// |
| 11 // SSLClientCertificateSelector public interface: | 11 // SSLClientCertificateSelector public interface: |
| 12 | 12 |
| 13 namespace browser { | 13 namespace browser { |
| 14 | 14 |
| 15 void ShowSSLClientCertificateSelector( | 15 void ShowSSLClientCertificateSelector( |
| 16 TabContentsWrapper* wrapper, | 16 TabContents* tab_contents, |
| 17 const net::HttpNetworkSession* network_session, | 17 const net::HttpNetworkSession* network_session, |
| 18 net::SSLCertRequestInfo* cert_request_info, | 18 net::SSLCertRequestInfo* cert_request_info, |
| 19 const base::Callback<void(net::X509Certificate*)>& callback) { | 19 const base::Callback<void(net::X509Certificate*)>& callback) { |
| 20 NOTIMPLEMENTED(); | 20 NOTIMPLEMENTED(); |
| 21 } | 21 } |
| 22 | 22 |
| 23 } // namespace browser | 23 } // namespace browser |
| OLD | NEW |