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

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

Issue 515493002: ServiceWorker: Clean up WebServiceWorkerRegistrationImpl (Closed) Base URL: http://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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
« no previous file with comments | « no previous file | content/child/service_worker/web_service_worker_registration_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 779a4f461009e13e68cfcb368c51b0283dfa231c..74ec956efc857173f7ee24cf789b0fe598de44e5 100644
--- a/content/child/service_worker/service_worker_dispatcher.cc
+++ b/content/child/service_worker/service_worker_dispatcher.cc
@@ -340,7 +340,7 @@ void ServiceWorkerDispatcher::SetInstallingServiceWorker(
registrations_.find(registration_handle_id);
if (found != registrations_.end()) {
// Populate the .installing field with the new worker object.
- found->second->setInstalling(GetServiceWorker(info, false));
+ found->second->SetInstalling(GetServiceWorker(info, false));
if (info.handle_id != kInvalidServiceWorkerHandleId)
found->second->OnUpdateFound();
}
@@ -370,7 +370,7 @@ void ServiceWorkerDispatcher::SetWaitingServiceWorker(
registrations_.find(registration_handle_id);
if (found != registrations_.end()) {
// Populate the .waiting field with the new worker object.
- found->second->setWaiting(GetServiceWorker(info, false));
+ found->second->SetWaiting(GetServiceWorker(info, false));
}
}
@@ -398,7 +398,7 @@ void ServiceWorkerDispatcher::SetActiveServiceWorker(
registrations_.find(registration_handle_id);
if (found != registrations_.end()) {
// Populate the .active field with the new worker object.
- found->second->setActive(GetServiceWorker(info, false));
+ found->second->SetActive(GetServiceWorker(info, false));
}
}
« no previous file with comments | « no previous file | content/child/service_worker/web_service_worker_registration_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698