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 76986889bd8fef1c2585991d30a8bbba3263e4ec..8e20182c5b1b66c326a515682ab570c6fd57771c 100644 |
--- a/content/browser/service_worker/service_worker_context_wrapper.cc |
+++ b/content/browser/service_worker/service_worker_context_wrapper.cc |
@@ -437,6 +437,11 @@ void ServiceWorkerContextWrapper::DidFindRegistrationForUpdate( |
if (!context_core_) |
return; |
DCHECK(registration); |
+ // TODO(jungkees): |force_bypass_cache| is set to true because the call stack |
+ // is initiated by an update button on DevTools that expects the cache is |
+ // bypassed. However, in order to provide options for callers to choose the |
+ // cache bypass mode, plumb |force_bypass_cache| through to |
+ // UpdateRegistration(). |
context_core_->UpdateServiceWorker(registration.get(), |
true /* force_bypass_cache */); |
} |