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

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

Issue 2481093003: Introduce ResourceRequesterInfo to abstract the requester of resource request (Closed)
Patch Set: incorporated yhirano & kinuko's comment Created 4 years, 1 month 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/loader/resource_message_filter.h
diff --git a/content/browser/loader/resource_message_filter.h b/content/browser/loader/resource_message_filter.h
index 651ca8eb33dd70ba8815a161a8044cc59536b9fa..0d3d443da8ef6e4bac211cbd75285cb44f3ddd80 100644
--- a/content/browser/loader/resource_message_filter.h
+++ b/content/browser/loader/resource_message_filter.h
@@ -53,7 +53,6 @@ class CONTENT_EXPORT ResourceMessageFilter
// (and may be invalid) for requests that are NOT from the NPAPI plugin
// process.
ResourceMessageFilter(int child_id,
- int process_type,
ChromeAppCacheService* appcache_service,
ChromeBlobStorageContext* blob_storage_context,
storage::FileSystemContext* file_system_context,
@@ -89,7 +88,6 @@ class CONTENT_EXPORT ResourceMessageFilter
}
int child_id() const { return child_id_; }
- int process_type() const { return process_type_; }
base::WeakPtr<ResourceMessageFilter> GetWeakPtr();
@@ -115,8 +113,6 @@ class CONTENT_EXPORT ResourceMessageFilter
// The ID of the child process.
int child_id_;
- int process_type_;
-
scoped_refptr<ChromeAppCacheService> appcache_service_;
scoped_refptr<ChromeBlobStorageContext> blob_storage_context_;
scoped_refptr<storage::FileSystemContext> file_system_context_;

Powered by Google App Engine
This is Rietveld 408576698