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

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

Issue 2501343003: PlzNavigate: AppCache support. (Closed)
Patch Set: Address review comments 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/appcache/appcache_interceptor.cc
diff --git a/content/browser/appcache/appcache_interceptor.cc b/content/browser/appcache/appcache_interceptor.cc
index 85022442562c6f188f524bd50fabdf98e3b33f3b..ac23b154855271433930791b5dfc42ebe7b40574 100644
--- a/content/browser/appcache/appcache_interceptor.cc
+++ b/content/browser/appcache/appcache_interceptor.cc
@@ -31,13 +31,12 @@ AppCacheRequestHandler* AppCacheInterceptor::GetHandler(
request->GetUserData(&kHandlerKey));
}
-void AppCacheInterceptor::SetExtraRequestInfo(
- net::URLRequest* request,
- AppCacheServiceImpl* service,
- int process_id,
- int host_id,
- ResourceType resource_type,
- bool should_reset_appcache) {
+void AppCacheInterceptor::SetExtraRequestInfo(net::URLRequest* request,
+ AppCacheServiceImpl* service,
+ int process_id,
+ int host_id,
+ ResourceType resource_type,
+ bool should_reset_appcache) {
if (!service || (host_id == kAppCacheNoHostId))
return;
@@ -51,9 +50,20 @@ void AppCacheInterceptor::SetExtraRequestInfo(
if (!host)
return;
+ SetExtraRequestInfoForHost(request, host, resource_type,
+ should_reset_appcache);
+}
+
+void AppCacheInterceptor::SetExtraRequestInfoForHost(
+ net::URLRequest* request,
+ AppCacheHost* host,
+ ResourceType resource_type,
+ bool should_reset_appcache) {
// Create a handler for this request and associate it with the request.
AppCacheRequestHandler* handler =
- host->CreateRequestHandler(request, resource_type, should_reset_appcache);
+ host->CreateRequestHandler(request,
+ resource_type,
+ should_reset_appcache);
if (handler)
SetHandler(request, handler);
}

Powered by Google App Engine
This is Rietveld 408576698