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

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

Issue 702843004: Transfer serviceworker state during cross site navigations too. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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 6cb66df06762882f507a847ea92f940065f20557..4ca2c6998e75d2680c331e08accb2af71605277c 100644
--- a/content/browser/appcache/appcache_interceptor.cc
+++ b/content/browser/appcache/appcache_interceptor.cc
@@ -85,6 +85,15 @@ void AppCacheInterceptor::CompleteCrossSiteTransfer(
new_host_id);
}
+void AppCacheInterceptor::MaybeCompleteCrossSiteTransferInOldProcess(
+ net::URLRequest* request,
+ int process_id) {
+ AppCacheRequestHandler* handler = GetHandler(request);
+ if (!handler)
+ return;
+ handler->MaybeCompleteCrossSiteTransferInOldProcess(process_id);
+}
+
AppCacheInterceptor::AppCacheInterceptor() {
}

Powered by Google App Engine
This is Rietveld 408576698