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

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

Issue 556003006: [ServiceWorker] Check is_uninstalled in ServiceWorkerRegisterJob::ContinueWithRegistration() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: move is_uninstalled_ = true; Created 6 years, 3 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.h
diff --git a/content/browser/service_worker/service_worker_registration.h b/content/browser/service_worker/service_worker_registration.h
index caa98a2cc8f0c8d909ad33699beff7a90ce4f543..bf220d35ad69e9e52ad115e1267bf7e2b41187fa 100644
--- a/content/browser/service_worker/service_worker_registration.h
+++ b/content/browser/service_worker/service_worker_registration.h
@@ -54,6 +54,7 @@ class CONTENT_EXPORT ServiceWorkerRegistration
void set_is_deleted(bool deleted) { is_deleted_ = deleted; }
bool is_uninstalling() const { return is_uninstalling_; }
+ bool is_uninstalled() const { return is_uninstalled_; }
ServiceWorkerVersion* active_version() const {
return active_version_.get();
@@ -140,6 +141,7 @@ class CONTENT_EXPORT ServiceWorkerRegistration
const int64 registration_id_;
bool is_deleted_;
bool is_uninstalling_;
+ bool is_uninstalled_;
bool should_activate_when_ready_;
base::Time last_update_check_;
scoped_refptr<ServiceWorkerVersion> active_version_;

Powered by Google App Engine
This is Rietveld 408576698