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