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

Unified Diff: android_webview/browser/aw_browser_context.cc

Issue 42773002: Get ClientCertStore through ResourceContext. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: update unittest, clang fix Created 7 years, 2 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
« no previous file with comments | « no previous file | chrome/browser/profiles/profile_io_data.h » ('j') | chrome/browser/profiles/profile_io_data.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: android_webview/browser/aw_browser_context.cc
diff --git a/android_webview/browser/aw_browser_context.cc b/android_webview/browser/aw_browser_context.cc
index 7adc6dd97c3a285cdbfc99cb7b83d2f196e3966e..b0a0d0e23fc129f4c4dc4430de7e80dde577f5ad 100644
--- a/android_webview/browser/aw_browser_context.cc
+++ b/android_webview/browser/aw_browser_context.cc
@@ -26,6 +26,7 @@
#include "content/public/browser/resource_context.h"
#include "content/public/browser/storage_partition.h"
#include "content/public/browser/web_contents.h"
+#include "net/ssl/client_cert_store.h"
#include "net/url_request/url_request_context.h"
using base::FilePath;
@@ -62,6 +63,9 @@ class AwResourceContext : public content::ResourceContext {
virtual bool AllowCameraAccess(const GURL& origin) OVERRIDE {
return false;
}
+ virtual scoped_ptr<net::ClientCertStore> GetClientCertStore() OVERRIDE {
+ return scoped_ptr<net::ClientCertStore>();
+ }
private:
net::URLRequestContextGetter* getter_;
« no previous file with comments | « no previous file | chrome/browser/profiles/profile_io_data.h » ('j') | chrome/browser/profiles/profile_io_data.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698