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

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

Issue 506043002: (Reland) Service Worker: Handle same-scope, new script registration (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: sync 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 | « content/browser/service_worker/service_worker_registration.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 875a20474f5da21e177391911439feda95c56f3d..51bd701c358ca9ba5b8de9dac19d53e6da8da919 100644
--- a/content/browser/service_worker/service_worker_registration.cc
+++ b/content/browser/service_worker/service_worker_registration.cc
@@ -167,10 +167,13 @@ void ServiceWorkerRegistration::ClearWhenReady() {
Clear();
}
-void ServiceWorkerRegistration::AbortPendingClear() {
+void ServiceWorkerRegistration::AbortPendingClear(
+ const StatusCallback& callback) {
DCHECK(context_);
- if (!is_uninstalling())
+ if (!is_uninstalling()) {
+ callback.Run(SERVICE_WORKER_OK);
return;
+ }
is_uninstalling_ = false;
context_->storage()->NotifyDoneUninstallingRegistration(this);
@@ -181,8 +184,9 @@ void ServiceWorkerRegistration::AbortPendingClear() {
context_->storage()->StoreRegistration(
this,
most_recent_version.get(),
- base::Bind(&ServiceWorkerRegistration::OnStoreFinished,
+ base::Bind(&ServiceWorkerRegistration::OnRestoreFinished,
this,
+ callback,
most_recent_version));
}
@@ -278,7 +282,9 @@ void ServiceWorkerRegistration::OnDeleteFinished(
}
void ServiceWorkerRegistration::Clear() {
- context_->storage()->NotifyDoneUninstallingRegistration(this);
+ is_uninstalling_ = false;
+ if (context_)
+ context_->storage()->NotifyDoneUninstallingRegistration(this);
ChangedVersionAttributesMask mask;
if (installing_version_.get()) {
@@ -302,15 +308,22 @@ void ServiceWorkerRegistration::Clear() {
FOR_EACH_OBSERVER(Listener, listeners_,
OnVersionAttributesChanged(this, mask, info));
}
+
+ FOR_EACH_OBSERVER(
+ Listener, listeners_, OnRegistrationFinishedUninstalling(this));
}
-void ServiceWorkerRegistration::OnStoreFinished(
+void ServiceWorkerRegistration::OnRestoreFinished(
+ const StatusCallback& callback,
scoped_refptr<ServiceWorkerVersion> version,
ServiceWorkerStatusCode status) {
- if (!context_)
+ if (!context_) {
+ callback.Run(ServiceWorkerStatusCode::SERVICE_WORKER_ERROR_ABORT);
return;
+ }
context_->storage()->NotifyDoneInstallingRegistration(
this, version.get(), status);
+ callback.Run(status);
}
} // namespace content
« no previous file with comments | « content/browser/service_worker/service_worker_registration.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698