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

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: Created 3 years, 9 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 62068edd0669953a3262fce82e283b394aa0ac8c..4112e7dae918c8d2964f28eb4361f117f36a9eb9 100644
--- a/content/browser/service_worker/service_worker_context_wrapper.cc
+++ b/content/browser/service_worker/service_worker_context_wrapper.cc
@@ -212,16 +212,13 @@ static void FinishRegistrationOnIO(
void ServiceWorkerContextWrapper::RegisterServiceWorker(
const GURL& pattern,
const GURL& script_url,
+ bool use_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, use_cache, continuation));
return;
}
if (!context_core_) {
@@ -231,7 +228,8 @@ void ServiceWorkerContextWrapper::RegisterServiceWorker(
}
context()->RegisterServiceWorker(
net::SimplifyUrlForRequest(pattern),
- net::SimplifyUrlForRequest(script_url), NULL /* provider_host */,
+ net::SimplifyUrlForRequest(script_url), use_cache,
+ NULL /* provider_host */,
base::Bind(&FinishRegistrationOnIO, continuation));
}

Powered by Google App Engine
This is Rietveld 408576698