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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_REGISTRATION_H_ 5 #ifndef CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_REGISTRATION_H_
6 #define CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_REGISTRATION_H_ 6 #define CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_REGISTRATION_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/gtest_prod_util.h" 9 #include "base/gtest_prod_util.h"
10 #include "base/logging.h" 10 #include "base/logging.h"
11 #include "base/memory/ref_counted.h" 11 #include "base/memory/ref_counted.h"
12 #include "base/memory/scoped_ptr.h" 12 #include "base/memory/scoped_ptr.h"
13 #include "content/browser/service_worker/service_worker_version.h" 13 #include "content/browser/service_worker/service_worker_version.h"
14 #include "content/common/content_export.h" 14 #include "content/common/content_export.h"
15 #include "content/common/service_worker/service_worker_types.h" 15 #include "content/common/service_worker/service_worker_types.h"
16 #include "url/gurl.h" 16 #include "url/gurl.h"
17 17
18 namespace content { 18 namespace content {
19 19
20 class ServiceWorkerRegistrationInfo; 20 class ServiceWorkerRegistrationInfo;
21 class ServiceWorkerVersion; 21 class ServiceWorkerVersion;
22 22
23 // This class represents a service worker registration. The 23 // This class represents a service worker registration. The scope is constant
24 // scope and script url are constant for the life of the persistent 24 // for the life of the persistent registration. It's refcounted to facilitate
25 // registration. It's refcounted to facillitate multiple controllees 25 // multiple controllees being associated with the same registration. The class
26 // being associated with the same registration. The class roughly 26 // 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.
27 // corresponds to navigator.serviceWorker.registgration.
28 class CONTENT_EXPORT ServiceWorkerRegistration 27 class CONTENT_EXPORT ServiceWorkerRegistration
29 : NON_EXPORTED_BASE(public base::RefCounted<ServiceWorkerRegistration>), 28 : NON_EXPORTED_BASE(public base::RefCounted<ServiceWorkerRegistration>),
30 public ServiceWorkerVersion::Listener { 29 public ServiceWorkerVersion::Listener {
31 public: 30 public:
32 typedef base::Callback<void(ServiceWorkerStatusCode status)> StatusCallback; 31 typedef base::Callback<void(ServiceWorkerStatusCode status)> StatusCallback;
33 32
34 class Listener { 33 class Listener {
35 public: 34 public:
36 virtual void OnVersionAttributesChanged( 35 virtual void OnVersionAttributesChanged(
37 ServiceWorkerRegistration* registration, 36 ServiceWorkerRegistration* registration,
38 ChangedVersionAttributesMask changed_mask, 37 ChangedVersionAttributesMask changed_mask,
39 const ServiceWorkerRegistrationInfo& info) = 0; 38 const ServiceWorkerRegistrationInfo& info) {}
40 virtual void OnRegistrationFailed( 39 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)
41 ServiceWorkerRegistration* registration) = 0; 40 }
41 virtual void OnRegistrationFinishedUninstalling(
42 ServiceWorkerRegistration* registration) {}
42 }; 43 };
43 44
44 ServiceWorkerRegistration(const GURL& pattern, 45 ServiceWorkerRegistration(const GURL& pattern,
45 const GURL& script_url, 46 const GURL& script_url,
46 int64 registration_id, 47 int64 registration_id,
47 base::WeakPtr<ServiceWorkerContextCore> context); 48 base::WeakPtr<ServiceWorkerContextCore> context);
48 49
50 const GURL& pattern() const { return pattern_; }
51
52 // Corresponds to the spec's [[ScriptURL]]: the URL passed to the
53 // serviceWorker.navigator.register() call that created or last updated this
54 // registration.
55 const GURL& script_url() const { return script_url_; }
56 void set_script_url(const GURL& url) { script_url_ = url; }
57
49 int64 id() const { return registration_id_; } 58 int64 id() const { return registration_id_; }
50 const GURL& script_url() const { return script_url_; }
51 const GURL& pattern() const { return pattern_; }
52 59
53 bool is_deleted() const { return is_deleted_; } 60 bool is_deleted() const { return is_deleted_; }
54 void set_is_deleted(bool deleted) { is_deleted_ = deleted; } 61 void set_is_deleted(bool deleted) { is_deleted_ = deleted; }
55 62
56 bool is_uninstalling() const { return is_uninstalling_; } 63 bool is_uninstalling() const { return is_uninstalling_; }
57 64
58 ServiceWorkerVersion* active_version() const { 65 ServiceWorkerVersion* active_version() const {
59 return active_version_.get(); 66 return active_version_.get();
60 } 67 }
61 68
(...skipping 27 matching lines...) Expand all
89 // has no controllees. If there are no controllees at the time the method 96 // has no controllees. If there are no controllees at the time the method
90 // is called, activation is initiated immediately. 97 // is called, activation is initiated immediately.
91 void ActivateWaitingVersionWhenReady(); 98 void ActivateWaitingVersionWhenReady();
92 99
93 // Triggers the [[ClearRegistration]] algorithm when the currently 100 // Triggers the [[ClearRegistration]] algorithm when the currently
94 // active version has no controllees. Deletes this registration 101 // active version has no controllees. Deletes this registration
95 // from storage immediately. 102 // from storage immediately.
96 void ClearWhenReady(); 103 void ClearWhenReady();
97 104
98 // Restores this registration in storage and cancels the pending 105 // Restores this registration in storage and cancels the pending
99 // [[ClearRegistration]] algorithm. If the algorithm was already triggered, 106 // [[ClearRegistration]] algorithm.
100 // does nothing. 107 void AbortPendingClear(const StatusCallback& callback);
101 void AbortPendingClear();
102 108
103 // The time of the most recent update check. 109 // The time of the most recent update check.
104 base::Time last_update_check() const { return last_update_check_; } 110 base::Time last_update_check() const { return last_update_check_; }
105 void set_last_update_check(base::Time last) { last_update_check_ = last; } 111 void set_last_update_check(base::Time last) { last_update_check_ = last; }
106 112
107 private: 113 private:
108 friend class base::RefCounted<ServiceWorkerRegistration>; 114 friend class base::RefCounted<ServiceWorkerRegistration>;
109 115
110 virtual ~ServiceWorkerRegistration(); 116 virtual ~ServiceWorkerRegistration();
111 117
(...skipping 10 matching lines...) Expand all
122 128
123 // This method corresponds to the [[Activate]] algorithm. 129 // This method corresponds to the [[Activate]] algorithm.
124 void ActivateWaitingVersion(); 130 void ActivateWaitingVersion();
125 void OnActivateEventFinished( 131 void OnActivateEventFinished(
126 ServiceWorkerVersion* activating_version, 132 ServiceWorkerVersion* activating_version,
127 ServiceWorkerStatusCode status); 133 ServiceWorkerStatusCode status);
128 void OnDeleteFinished(ServiceWorkerStatusCode status); 134 void OnDeleteFinished(ServiceWorkerStatusCode status);
129 135
130 // This method corresponds to the [[ClearRegistration]] algorithm. 136 // This method corresponds to the [[ClearRegistration]] algorithm.
131 void Clear(); 137 void Clear();
132 void OnStoreFinished(scoped_refptr<ServiceWorkerVersion> version, 138
133 ServiceWorkerStatusCode status); 139 void OnRestoreFinished(const StatusCallback& callback,
140 scoped_refptr<ServiceWorkerVersion> version,
141 ServiceWorkerStatusCode status);
134 142
135 const GURL pattern_; 143 const GURL pattern_;
136 const GURL script_url_; 144 GURL script_url_;
137 const int64 registration_id_; 145 const int64 registration_id_;
138 bool is_deleted_; 146 bool is_deleted_;
139 bool is_uninstalling_; 147 bool is_uninstalling_;
140 bool should_activate_when_ready_; 148 bool should_activate_when_ready_;
141 base::Time last_update_check_; 149 base::Time last_update_check_;
142 scoped_refptr<ServiceWorkerVersion> active_version_; 150 scoped_refptr<ServiceWorkerVersion> active_version_;
143 scoped_refptr<ServiceWorkerVersion> waiting_version_; 151 scoped_refptr<ServiceWorkerVersion> waiting_version_;
144 scoped_refptr<ServiceWorkerVersion> installing_version_; 152 scoped_refptr<ServiceWorkerVersion> installing_version_;
145 ObserverList<Listener> listeners_; 153 ObserverList<Listener> listeners_;
146 base::WeakPtr<ServiceWorkerContextCore> context_; 154 base::WeakPtr<ServiceWorkerContextCore> context_;
147 155
148 DISALLOW_COPY_AND_ASSIGN(ServiceWorkerRegistration); 156 DISALLOW_COPY_AND_ASSIGN(ServiceWorkerRegistration);
149 }; 157 };
150 158
151 } // namespace content 159 } // namespace content
152 160
153 #endif // CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_REGISTRATION_H_ 161 #endif // CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_REGISTRATION_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698