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

Unified Diff: net/url_request/url_request.h

Issue 652137: Mac: implement <keygen> support, including adding generated cert to the Keychain. (Closed)
Patch Set: Responding to review feedback. Created 10 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 side-by-side diff with in-line comments
Download patch
« net/base/net_error_list.h ('K') | « net/net.gyp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/url_request/url_request.h
diff --git a/net/url_request/url_request.h b/net/url_request/url_request.h
index c8bc2bf8079613e22b647fe786ae4e251c23970c..9dcc3c9016f18125ccd4b04371eaa50d058c5559 100644
--- a/net/url_request/url_request.h
+++ b/net/url_request/url_request.h
@@ -187,6 +187,14 @@ class URLRequest {
request->Cancel();
}
+ // Called when the server response body contains a client certificate to be
+ // stored locally. This happens in response to the posting of a form that
+ // contains a <keygen> element -- the server fills out the certificate
+ // request and returns the X.509 cert data.
+ virtual void OnClientCertificateGenerated(URLRequest* request,
+ net::X509Certificate* cert) {
+ }
+
// Called when unable to get cookies due to policy.
virtual void OnGetCookiesBlocked(URLRequest* request) {
}
« net/base/net_error_list.h ('K') | « net/net.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698