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

Unified Diff: content/browser/service_worker/service_worker_registration.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_registration.cc
diff --git a/content/browser/service_worker/service_worker_registration.cc b/content/browser/service_worker/service_worker_registration.cc
index e8f2a74a8e9bdfebae21fac234617d7cbaced953..875a20474f5da21e177391911439feda95c56f3d 100644
--- a/content/browser/service_worker/service_worker_registration.cc
+++ b/content/browser/service_worker/service_worker_registration.cc
@@ -24,11 +24,9 @@ ServiceWorkerVersionInfo GetVersionInfo(ServiceWorkerVersion* version) {
ServiceWorkerRegistration::ServiceWorkerRegistration(
const GURL& pattern,
- const GURL& script_url,
int64 registration_id,
base::WeakPtr<ServiceWorkerContextCore> context)
: pattern_(pattern),
- script_url_(script_url),
registration_id_(registration_id),
is_deleted_(false),
is_uninstalling_(false),
@@ -48,6 +46,14 @@ ServiceWorkerRegistration::~ServiceWorkerRegistration() {
active_version()->RemoveListener(this);
}
+ServiceWorkerVersion* ServiceWorkerRegistration::GetNewestVersion() const {
+ if (installing_version())
+ return installing_version();
+ if (waiting_version())
+ return waiting_version();
+ return active_version();
+}
+
void ServiceWorkerRegistration::AddListener(Listener* listener) {
listeners_.AddObserver(listener);
}
@@ -63,7 +69,6 @@ void ServiceWorkerRegistration::NotifyRegistrationFailed() {
ServiceWorkerRegistrationInfo ServiceWorkerRegistration::GetInfo() {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
return ServiceWorkerRegistrationInfo(
- script_url(),
pattern(),
registration_id_,
GetVersionInfo(active_version_.get()),
@@ -155,7 +160,7 @@ void ServiceWorkerRegistration::ClearWhenReady() {
context_->storage()->NotifyUninstallingRegistration(this);
context_->storage()->DeleteRegistration(
id(),
- script_url().GetOrigin(),
+ pattern().GetOrigin(),
base::Bind(&ServiceWorkerUtils::NoOpStatusCallback));
if (!active_version() || !active_version()->HasControllee())
@@ -247,7 +252,7 @@ void ServiceWorkerRegistration::OnActivateEventFinished(
if (!waiting_version()) {
// Delete the records from the db.
context_->storage()->DeleteRegistration(
- id(), script_url().GetOrigin(),
+ id(), pattern().GetOrigin(),
base::Bind(&ServiceWorkerRegistration::OnDeleteFinished, this));
// But not from memory if there is a version in the pipeline.
if (installing_version())

Powered by Google App Engine
This is Rietveld 408576698