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

Side by Side Diff: chrome/browser/ssl/ssl_client_certificate_selector.h

Issue 780383002: Don't key client auth on HttpNetworkSession. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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
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 #ifndef CHROME_BROWSER_SSL_SSL_CLIENT_CERTIFICATE_SELECTOR_H_ 5 #ifndef CHROME_BROWSER_SSL_SSL_CLIENT_CERTIFICATE_SELECTOR_H_
6 #define CHROME_BROWSER_SSL_SSL_CLIENT_CERTIFICATE_SELECTOR_H_ 6 #define CHROME_BROWSER_SSL_SSL_CLIENT_CERTIFICATE_SELECTOR_H_
7 7
8 #include "base/callback_forward.h" 8 #include "base/callback_forward.h"
9 9
10 namespace content { 10 namespace content {
11 class WebContents; 11 class WebContents;
12 } 12 }
13 13
14 namespace net { 14 namespace net {
15 class HttpNetworkSession;
16 class SSLCertRequestInfo; 15 class SSLCertRequestInfo;
17 class X509Certificate; 16 class X509Certificate;
18 } 17 }
19 18
20 namespace chrome { 19 namespace chrome {
21 20
22 typedef base::Callback<void(net::X509Certificate*)> SelectCertificateCallback; 21 typedef base::Callback<void(net::X509Certificate*)> SelectCertificateCallback;
23 22
24 // Opens a constrained SSL client certificate selection dialog under |parent|, 23 // Opens a constrained SSL client certificate selection dialog under |parent|,
25 // offering certificates from |cert_request_info|. When the user has made a 24 // offering certificates from |cert_request_info|. When the user has made a
26 // selection, the dialog will report back to |callback|. |callback| is notified 25 // selection, the dialog will report back to |callback|. |callback| is notified
27 // when the dialog closes in call cases; if the user cancels the dialog, we call 26 // when the dialog closes in call cases; if the user cancels the dialog, we call
28 // with a NULL certificate. 27 // with a NULL certificate.
29 void ShowSSLClientCertificateSelector( 28 void ShowSSLClientCertificateSelector(
30 content::WebContents* contents, 29 content::WebContents* contents,
31 const net::HttpNetworkSession* network_session,
32 net::SSLCertRequestInfo* cert_request_info, 30 net::SSLCertRequestInfo* cert_request_info,
33 const SelectCertificateCallback& callback); 31 const SelectCertificateCallback& callback);
34 32
35 } // namespace chrome 33 } // namespace chrome
36 34
37 #endif // CHROME_BROWSER_SSL_SSL_CLIENT_CERTIFICATE_SELECTOR_H_ 35 #endif // CHROME_BROWSER_SSL_SSL_CLIENT_CERTIFICATE_SELECTOR_H_
OLDNEW
« no previous file with comments | « chrome/browser/ssl/ssl_client_auth_requestor_mock.cc ('k') | chrome/browser/ui/android/ssl_client_certificate_request.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698