Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(314)

Side by Side Diff: chrome/browser/ui/android/ssl_client_certificate_selector.cc

Issue 12220104: Wire up SSL client authentication for OpenSSL/Android through the net/ stack (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698