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

Unified Diff: content/public/browser/content_browser_client.cc

Issue 42773002: Get ClientCertStore through ResourceContext. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix win #2 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
Index: content/public/browser/content_browser_client.cc
diff --git a/content/public/browser/content_browser_client.cc b/content/public/browser/content_browser_client.cc
index 0a91186650aaca5e48153fdde20924dc58423af6..2f3310c03d7cea12341581fb2baceaf2d426cc5e 100644
--- a/content/public/browser/content_browser_client.cc
+++ b/content/public/browser/content_browser_client.cc
@@ -5,6 +5,7 @@
#include "content/public/browser/content_browser_client.h"
#include "base/files/file_path.h"
+#include "net/ssl/client_cert_store.h"
#include "ui/gfx/image/image_skia.h"
#include "url/gurl.h"
@@ -211,6 +212,11 @@ WebKit::WebNotificationPresenter::Permission
return WebKit::WebNotificationPresenter::PermissionAllowed;
}
+scoped_ptr<net::ClientCertStore> ContentBrowserClient::GetClientCertStore(
+ ResourceContext* context) {
+ return scoped_ptr<net::ClientCertStore>();
+}
+
bool ContentBrowserClient::CanCreateWindow(
const GURL& opener_url,
const GURL& opener_top_level_frame_url,

Powered by Google App Engine
This is Rietveld 408576698