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

Unified Diff: content/browser/renderer_host/resource_dispatcher_host_request_info.h

Issue 9369009: Make content::ResourceContext be a real interface like the rest of the Content API (i.e. don't ha... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: sync Created 8 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
Index: content/browser/renderer_host/resource_dispatcher_host_request_info.h
===================================================================
--- content/browser/renderer_host/resource_dispatcher_host_request_info.h (revision 121250)
+++ content/browser/renderer_host/resource_dispatcher_host_request_info.h (working copy)
@@ -55,7 +55,7 @@
bool allow_download,
bool has_user_gesture,
WebKit::WebReferrerPolicy referrer_policy,
- const content::ResourceContext* context);
+ content::ResourceContext* context);
virtual ~ResourceDispatcherHostRequestInfo();
// Top-level ResourceHandler servicing this request.
@@ -188,7 +188,7 @@
WebKit::WebReferrerPolicy referrer_policy() const { return referrer_policy_; }
- const content::ResourceContext* context() const { return context_; }
+ content::ResourceContext* context() const { return context_; }
private:
friend class ResourceDispatcherHost;
@@ -252,7 +252,7 @@
int memory_cost_;
scoped_refptr<webkit_blob::BlobData> requested_blob_data_;
WebKit::WebReferrerPolicy referrer_policy_;
- const content::ResourceContext* context_;
+ content::ResourceContext* context_;
// "Private" data accessible only to ResourceDispatcherHost (use the
// accessors above for consistency).

Powered by Google App Engine
This is Rietveld 408576698