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.h

Issue 472103003: Service Worker: Handle same-scope, new script registration (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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.h
diff --git a/content/browser/service_worker/service_worker_registration.h b/content/browser/service_worker/service_worker_registration.h
index 51872d21447396ddf03a71fa57ff9c3882ff4ecc..6b60afee20de0beb53b09084c7d8a74e6eeeb8e2 100644
--- a/content/browser/service_worker/service_worker_registration.h
+++ b/content/browser/service_worker/service_worker_registration.h
@@ -20,11 +20,10 @@ namespace content {
class ServiceWorkerRegistrationInfo;
class ServiceWorkerVersion;
-// This class represents a service worker registration. The
-// scope and script url are constant for the life of the persistent
-// registration. It's refcounted to facillitate multiple controllees
-// being associated with the same registration. The class roughly
-// corresponds to navigator.serviceWorker.registgration.
+// This class represents a service worker registration. The scope is constant
+// for the life of the persistent registration. It's refcounted to facilitate
+// multiple controllees being associated with the same registration. The class
+// roughly corresponds to navigator.serviceWorker.registration.
nhiroki 2014/08/21 01:57:17 "navigator.serviceWorker.registration" looks gone?
falken 2014/08/21 02:40:39 Good catch. I'll just delete that sentence.
class CONTENT_EXPORT ServiceWorkerRegistration
: NON_EXPORTED_BASE(public base::RefCounted<ServiceWorkerRegistration>),
public ServiceWorkerVersion::Listener {
@@ -36,9 +35,11 @@ class CONTENT_EXPORT ServiceWorkerRegistration
virtual void OnVersionAttributesChanged(
ServiceWorkerRegistration* registration,
ChangedVersionAttributesMask changed_mask,
- const ServiceWorkerRegistrationInfo& info) = 0;
- virtual void OnRegistrationFailed(
- ServiceWorkerRegistration* registration) = 0;
+ const ServiceWorkerRegistrationInfo& info) {}
+ virtual void OnRegistrationFailed(ServiceWorkerRegistration* registration) {
nhiroki 2014/08/21 01:57:17 nit: I'd prefer to wrap this at the beginning of t
falken 2014/08/21 02:40:38 Done (but git-cl format would revert it back)
+ }
+ virtual void OnRegistrationFinishedUninstalling(
+ ServiceWorkerRegistration* registration) {}
};
ServiceWorkerRegistration(const GURL& pattern,
@@ -46,10 +47,16 @@ class CONTENT_EXPORT ServiceWorkerRegistration
int64 registration_id,
base::WeakPtr<ServiceWorkerContextCore> context);
- int64 id() const { return registration_id_; }
- const GURL& script_url() const { return script_url_; }
const GURL& pattern() const { return pattern_; }
+ // Corresponds to the spec's [[ScriptURL]]: the URL passed to the
+ // serviceWorker.navigator.register() call that created or last updated this
+ // registration.
+ const GURL& script_url() const { return script_url_; }
+ void set_script_url(const GURL& url) { script_url_ = url; }
+
+ int64 id() const { return registration_id_; }
+
bool is_deleted() const { return is_deleted_; }
void set_is_deleted(bool deleted) { is_deleted_ = deleted; }
@@ -96,9 +103,8 @@ class CONTENT_EXPORT ServiceWorkerRegistration
void ClearWhenReady();
// Restores this registration in storage and cancels the pending
- // [[ClearRegistration]] algorithm. If the algorithm was already triggered,
- // does nothing.
- void AbortPendingClear();
+ // [[ClearRegistration]] algorithm.
+ void AbortPendingClear(const StatusCallback& callback);
// The time of the most recent update check.
base::Time last_update_check() const { return last_update_check_; }
@@ -129,11 +135,13 @@ class CONTENT_EXPORT ServiceWorkerRegistration
// This method corresponds to the [[ClearRegistration]] algorithm.
void Clear();
- void OnStoreFinished(scoped_refptr<ServiceWorkerVersion> version,
- ServiceWorkerStatusCode status);
+
+ void OnRestoreFinished(const StatusCallback& callback,
+ scoped_refptr<ServiceWorkerVersion> version,
+ ServiceWorkerStatusCode status);
const GURL pattern_;
- const GURL script_url_;
+ GURL script_url_;
const int64 registration_id_;
bool is_deleted_;
bool is_uninstalling_;

Powered by Google App Engine
This is Rietveld 408576698