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

Unified Diff: content/browser/service_worker/service_worker_storage.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_storage.cc
diff --git a/content/browser/service_worker/service_worker_storage.cc b/content/browser/service_worker/service_worker_storage.cc
index 0f0c29cd6fd8e481ac00feb8f5d6d79d67c44351..8b8b20c057966087205ff267e4a470469272a95f 100644
--- a/content/browser/service_worker/service_worker_storage.cc
+++ b/content/browser/service_worker/service_worker_storage.cc
@@ -427,7 +427,7 @@ void ServiceWorkerStorage::StoreRegistration(
ServiceWorkerDatabase::RegistrationData data;
data.registration_id = registration->id();
data.scope = registration->pattern();
- data.script = registration->script_url();
+ data.script = version->script_url();
data.has_fetch_handler = true;
data.version_id = version->version_id();
data.last_update_check = registration->last_update_check();
@@ -469,7 +469,7 @@ void ServiceWorkerStorage::UpdateToActiveState(
base::Bind(&ServiceWorkerDatabase::UpdateVersionToActive,
base::Unretained(database_.get()),
registration->id(),
- registration->script_url().GetOrigin()),
+ registration->pattern().GetOrigin()),
base::Bind(&ServiceWorkerStorage::DidUpdateToActiveState,
weak_factory_.GetWeakPtr(),
callback));
@@ -489,7 +489,7 @@ void ServiceWorkerStorage::UpdateLastUpdateCheckTime(
base::IgnoreResult(&ServiceWorkerDatabase::UpdateLastCheckTime),
base::Unretained(database_.get()),
registration->id(),
- registration->script_url().GetOrigin(),
+ registration->pattern().GetOrigin(),
registration->last_update_check()));
}
@@ -876,7 +876,6 @@ void ServiceWorkerStorage::DidGetAllRegistrations(
ServiceWorkerRegistrationInfo info;
info.pattern = it->scope;
- info.script_url = it->script;
info.registration_id = it->registration_id;
if (ServiceWorkerVersion* version =
context_->GetLiveVersion(it->version_id)) {
@@ -969,7 +968,7 @@ ServiceWorkerStorage::GetOrCreateRegistration(
return registration;
registration = new ServiceWorkerRegistration(
- data.scope, data.script, data.registration_id, context_);
+ data.scope, data.registration_id, context_);
registration->set_last_update_check(data.last_update_check);
if (pending_deletions_.find(data.registration_id) !=
pending_deletions_.end()) {
@@ -978,8 +977,8 @@ ServiceWorkerStorage::GetOrCreateRegistration(
scoped_refptr<ServiceWorkerVersion> version =
context_->GetLiveVersion(data.version_id);
if (!version.get()) {
- version =
- new ServiceWorkerVersion(registration.get(), data.version_id, context_);
+ version = new ServiceWorkerVersion(
+ registration.get(), data.script, data.version_id, context_);
version->SetStatus(data.is_active ?
ServiceWorkerVersion::ACTIVATED : ServiceWorkerVersion::INSTALLED);
version->script_cache_map()->SetResources(resources);

Powered by Google App Engine
This is Rietveld 408576698