Chromium Code Reviews

Unified Diff: content/browser/appcache/appcache_interceptor.h

Issue 2481093003: Introduce ResourceRequesterInfo to abstract the requester of resource request (Closed)
Patch Set: incorporated kinuko's comment Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: content/browser/appcache/appcache_interceptor.h
diff --git a/content/browser/appcache/appcache_interceptor.h b/content/browser/appcache/appcache_interceptor.h
index 9d1abc31b6abb1752e4770a6af551caae0934abc..40581f209721f209b5c5cb02ef6d4b4abf001821 100644
--- a/content/browser/appcache/appcache_interceptor.h
+++ b/content/browser/appcache/appcache_interceptor.h
@@ -21,7 +21,7 @@ class URLRequest;
namespace content {
class AppCacheRequestHandler;
class AppCacheServiceImpl;
-class ResourceMessageFilter;
+class ResourceRequesterInfo;
// An interceptor to hijack requests and potentially service them out of
// the appcache.
@@ -47,7 +47,7 @@ class CONTENT_EXPORT AppCacheInterceptor : public net::URLRequestInterceptor {
static void CompleteCrossSiteTransfer(net::URLRequest* request,
int new_process_id,
int new_host_id,
- ResourceMessageFilter* filter);
+ ResourceRequesterInfo* requester_info);
static void MaybeCompleteCrossSiteTransferInOldProcess(
net::URLRequest* request,
int old_process_id);

Powered by Google App Engine