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

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

Issue 501453002: Decouple script_url from ServiceWorkerRegistration (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: review comments and add unittests 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_register_job.cc
diff --git a/content/browser/service_worker/service_worker_register_job.cc b/content/browser/service_worker/service_worker_register_job.cc
index a0453313bc0d33e636ac973cd616178b878e28a5..f6793ce6549a4630109be0250497db834aee0d11 100644
--- a/content/browser/service_worker/service_worker_register_job.cc
+++ b/content/browser/service_worker/service_worker_register_job.cc
@@ -44,7 +44,7 @@ ServiceWorkerRegisterJob::ServiceWorkerRegisterJob(
: context_(context),
job_type_(UPDATE_JOB),
pattern_(registration->pattern()),
- script_url_(registration->script_url()),
+ script_url_(registration->GetNewestVersion()->script_url()),
phase_(INITIAL),
is_promise_resolved_(false),
promise_resolved_status_(SERVICE_WORKER_OK),
@@ -190,7 +190,7 @@ void ServiceWorkerRegisterJob::ContinueWithRegistration(
existing_registration->AbortPendingClear();
// "If scriptURL is equal to registration.[[ScriptURL]], then:"
- if (existing_registration->script_url() == script_url_) {
+ if (existing_registration->GetNewestVersion()->script_url() == script_url_) {
// Spec says to resolve with registration.[[GetNewestWorker]]. We come close
// by resolving with the active version.
set_registration(existing_registration);
@@ -213,7 +213,7 @@ void ServiceWorkerRegisterJob::ContinueWithRegistration(
// controllees.
context_->storage()->DeleteRegistration(
existing_registration->id(),
- existing_registration->script_url().GetOrigin(),
+ existing_registration->pattern().GetOrigin(),
base::Bind(&ServiceWorkerRegisterJob::RegisterAndContinue,
weak_factory_.GetWeakPtr()));
}
@@ -232,6 +232,14 @@ void ServiceWorkerRegisterJob::ContinueWithUpdate(
return;
}
+ // A previous job may have unregistered or installed a new version to this
+ // registration.
+ if (registration()->is_uninstalling() ||
+ registration()->GetNewestVersion()->script_url() != script_url_) {
+ Complete(SERVICE_WORKER_ERROR_NOT_FOUND);
michaeln 2014/08/26 03:05:52 lgtm, thnx
+ return;
+ }
+
// TODO(michaeln): If the last update check was less than 24 hours
// ago, depending on the freshness of the cached worker script we
// may be able to complete the update job right here.
@@ -250,8 +258,7 @@ void ServiceWorkerRegisterJob::RegisterAndContinue(
}
set_registration(new ServiceWorkerRegistration(
- pattern_, script_url_, context_->storage()->NewRegistrationId(),
- context_));
+ pattern_, context_->storage()->NewRegistrationId(), context_));
AssociateProviderHostsToRegistration(registration());
UpdateAndContinue();
}
@@ -268,8 +275,10 @@ void ServiceWorkerRegisterJob::UpdateAndContinue() {
// "Let serviceWorker be a newly-created ServiceWorker object..." and start
// the worker.
- set_new_version(new ServiceWorkerVersion(
- registration(), context_->storage()->NewVersionId(), context_));
+ set_new_version(new ServiceWorkerVersion(registration(),
+ script_url_,
+ context_->storage()->NewVersionId(),
+ context_));
bool pause_after_download = job_type_ == UPDATE_JOB;
if (pause_after_download)
@@ -386,7 +395,7 @@ void ServiceWorkerRegisterJob::CompleteInternal(
registration()->NotifyRegistrationFailed();
context_->storage()->DeleteRegistration(
registration()->id(),
- registration()->script_url().GetOrigin(),
+ registration()->pattern().GetOrigin(),
base::Bind(&ServiceWorkerUtils::NoOpStatusCallback));
}
}

Powered by Google App Engine
This is Rietveld 408576698