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

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

Issue 1380323002: Make registration.update() no longer force bypassing the HTTP cache (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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_dispatcher_host.cc
diff --git a/content/browser/service_worker/service_worker_dispatcher_host.cc b/content/browser/service_worker/service_worker_dispatcher_host.cc
index c192d96e37110d5e35316776283d4de9afe29874..a042183870385fae365aa66e76d1a92d2de05e67 100644
--- a/content/browser/service_worker/service_worker_dispatcher_host.cc
+++ b/content/browser/service_worker/service_worker_dispatcher_host.cc
@@ -437,10 +437,8 @@ void ServiceWorkerDispatcherHost::OnUpdateServiceWorker(int thread_id,
return;
}
- // The spec says, "update() pings the server for an updated version of this
- // script without consulting caches", so set |force_bypass_cache| to true.
GetContext()->UpdateServiceWorker(
- registration, true /* force_bypass_cache */,
+ registration, false /* force_bypass_cache */,
false /* skip_script_comparison */, provider_host,
base::Bind(&ServiceWorkerDispatcherHost::UpdateComplete, this, thread_id,
provider_id, request_id));

Powered by Google App Engine
This is Rietveld 408576698