summaryrefslogtreecommitdiffstats
path: root/Source/WebKit/android/WebCoreSupport/WebUrlLoaderClient.h
diff options
context:
space:
mode:
authorBrian Carlstrom <bdc@google.com>2011-06-09 12:36:44 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2011-06-09 12:36:44 -0700
commit9da2ed34003cdea1a8c35c2f0947bb6632d99240 (patch)
tree764a068b84eed86956cdd1a9eaf30287e8e855fc /Source/WebKit/android/WebCoreSupport/WebUrlLoaderClient.h
parent700ba3f86b1e8eefe7e0efe1fa344079ec7c1e24 (diff)
parenteec5cd31a627a9d05aefe27fe25ff9df92ad1a53 (diff)
downloadexternal_webkit-9da2ed34003cdea1a8c35c2f0947bb6632d99240.zip
external_webkit-9da2ed34003cdea1a8c35c2f0947bb6632d99240.tar.gz
external_webkit-9da2ed34003cdea1a8c35c2f0947bb6632d99240.tar.bz2
Merge "Implement net::URLRequest::Delegate::OnCertificateRequested"
Diffstat (limited to 'Source/WebKit/android/WebCoreSupport/WebUrlLoaderClient.h')
-rw-r--r--Source/WebKit/android/WebCoreSupport/WebUrlLoaderClient.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/WebKit/android/WebCoreSupport/WebUrlLoaderClient.h b/Source/WebKit/android/WebCoreSupport/WebUrlLoaderClient.h
index 224fa65..dc7e8d5 100644
--- a/Source/WebKit/android/WebCoreSupport/WebUrlLoaderClient.h
+++ b/Source/WebKit/android/WebCoreSupport/WebUrlLoaderClient.h
@@ -74,6 +74,7 @@ public:
void cancelAuth();
void proceedSslCertError();
void cancelSslCertError(int cert_error);
+ void sslClientCert(EVP_PKEY* pkey, net::X509Certificate* chain);
typedef void CallbackFunction(void*);
@@ -91,6 +92,7 @@ public:
void willSendRequest(PassOwnPtr<WebResponse>);
void authRequired(scoped_refptr<net::AuthChallengeInfo>, bool firstTime);
void reportSslCertError(int cert_error, net::X509Certificate* cert);
+ void requestClientCert(net::SSLCertRequestInfo* cert);
// Handle to the chrome IO thread
static base::Thread* ioThread();