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

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

Issue 501453002: Decouple script_url from ServiceWorkerRegistration (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sync after major collision 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
Index: content/browser/service_worker/service_worker_job_coordinator.cc
diff --git a/content/browser/service_worker/service_worker_job_coordinator.cc b/content/browser/service_worker/service_worker_job_coordinator.cc
index 13e4b4b703ca28e5a47cdaddac99a1a5bb869b78..e5e89620e86769b8fd03890ca49753d993b89380 100644
--- a/content/browser/service_worker/service_worker_job_coordinator.cc
+++ b/content/browser/service_worker/service_worker_job_coordinator.cc
@@ -94,6 +94,8 @@ void ServiceWorkerJobCoordinator::Unregister(
void ServiceWorkerJobCoordinator::Update(
ServiceWorkerRegistration* registration) {
+ DCHECK(registration);
+ DCHECK(registration->GetNewestVersion());
job_queues_[registration->pattern()].Push(
make_scoped_ptr<ServiceWorkerRegisterJobBase>(
new ServiceWorkerRegisterJob(context_, registration)));

Powered by Google App Engine
This is Rietveld 408576698