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

Unified Diff: content/browser/loader/resource_loader_delegate.h

Issue 2088763004: Remove resource_context.h include from resource_loader.cc. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix Created 4 years, 6 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 | « content/browser/loader/resource_loader.cc ('k') | content/browser/loader/resource_loader_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/loader/resource_loader_delegate.h
diff --git a/content/browser/loader/resource_loader_delegate.h b/content/browser/loader/resource_loader_delegate.h
index 38c8a38bf7a8ab995ddd778b694b28d80703a183..098d3911c3c2432fdff9ebc97038eeb667550352 100644
--- a/content/browser/loader/resource_loader_delegate.h
+++ b/content/browser/loader/resource_loader_delegate.h
@@ -9,6 +9,7 @@
namespace net {
class AuthChallengeInfo;
+class ClientCertStore;
}
namespace content {
@@ -33,6 +34,10 @@ class CONTENT_EXPORT ResourceLoaderDelegate {
// expects to be destroyed as a side-effect of this call.
virtual void DidFinishLoading(ResourceLoader* loader) = 0;
+ // Get platform ClientCertStore. May return nullptr.
+ virtual std::unique_ptr<net::ClientCertStore> CreateClientCertStore(
+ ResourceLoader* loader) = 0;
+
protected:
virtual ~ResourceLoaderDelegate() {}
};
« no previous file with comments | « content/browser/loader/resource_loader.cc ('k') | content/browser/loader/resource_loader_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698