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