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

Unified Diff: content/child/service_worker/service_worker_dispatcher.cc

Issue 255813003: ServiceWorker: Queue worker state changes until Blink is ready for them (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: include style Created 6 years, 8 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/child/service_worker/service_worker_dispatcher.cc
diff --git a/content/child/service_worker/service_worker_dispatcher.cc b/content/child/service_worker/service_worker_dispatcher.cc
index 100693bdd6ecbe02d43e88cd183031aeb80c5c00..d8ac46e89ebbaa8cbbbcbb1f53b10fea2e09062d 100644
--- a/content/child/service_worker/service_worker_dispatcher.cc
+++ b/content/child/service_worker/service_worker_dispatcher.cc
@@ -198,7 +198,7 @@ void ServiceWorkerDispatcher::OnServiceWorkerStateChanged(
ServiceWorkerMap::iterator found = service_workers_.find(handle_id);
if (found == service_workers_.end())
return;
- found->second->SetState(state);
+ found->second->OnStateChanged(state);
}
void ServiceWorkerDispatcher::OnSetCurrentServiceWorker(

Powered by Google App Engine
This is Rietveld 408576698