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

Unified Diff: content/browser/service_worker/service_worker_context_wrapper.cc

Issue 2771823002: Implement updateViaCache flag and no-cache by default for main service worker scripts
Patch Set: fix IPC Created 3 years, 4 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/service_worker/service_worker_context_wrapper.cc
diff --git a/content/browser/service_worker/service_worker_context_wrapper.cc b/content/browser/service_worker/service_worker_context_wrapper.cc
index a95eca599ffea25f446e6080b40f9d2dec18ea53..9bddc80134326bba0b8864a7fac83fed41a2e666 100644
--- a/content/browser/service_worker/service_worker_context_wrapper.cc
+++ b/content/browser/service_worker/service_worker_context_wrapper.cc
@@ -266,16 +266,13 @@ static void FinishRegistrationOnIO(
void ServiceWorkerContextWrapper::RegisterServiceWorker(
const GURL& pattern,
const GURL& script_url,
+ blink::WebServiceWorkerUpdateViaCache update_via_cache,
const ResultCallback& continuation) {
if (!BrowserThread::CurrentlyOn(BrowserThread::IO)) {
BrowserThread::PostTask(
- BrowserThread::IO,
- FROM_HERE,
- base::Bind(&ServiceWorkerContextWrapper::RegisterServiceWorker,
- this,
- pattern,
- script_url,
- continuation));
+ BrowserThread::IO, FROM_HERE,
+ base::Bind(&ServiceWorkerContextWrapper::RegisterServiceWorker, this,
+ pattern, script_url, update_via_cache, continuation));
return;
}
if (!context_core_) {
@@ -283,7 +280,8 @@ void ServiceWorkerContextWrapper::RegisterServiceWorker(
base::Bind(continuation, false));
return;
}
- ServiceWorkerRegistrationOptions options(net::SimplifyUrlForRequest(pattern));
+ ServiceWorkerRegistrationOptions options(net::SimplifyUrlForRequest(pattern),
+ update_via_cache);
context()->RegisterServiceWorker(
net::SimplifyUrlForRequest(script_url), options,
nullptr /* provider_host */,

Powered by Google App Engine
This is Rietveld 408576698