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

Unified Diff: content/child/service_worker/web_service_worker_registration_impl.h

Issue 515493002: ServiceWorker: Clean up WebServiceWorkerRegistrationImpl (Closed) Base URL: http://chromium.googlesource.com/chromium/src.git@master
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/child/service_worker/web_service_worker_registration_impl.h
diff --git a/content/child/service_worker/web_service_worker_registration_impl.h b/content/child/service_worker/web_service_worker_registration_impl.h
index a11e3581fc4a355e9860b367b1ab43a79caa38ff..9a72c11db485997f39b8bfd36274ee94a2dd6b88 100644
--- a/content/child/service_worker/web_service_worker_registration_impl.h
+++ b/content/child/service_worker/web_service_worker_registration_impl.h
@@ -26,14 +26,15 @@ class WebServiceWorkerRegistrationImpl
scoped_ptr<ServiceWorkerRegistrationHandleReference> handle_ref);
virtual ~WebServiceWorkerRegistrationImpl();
+ void SetInstalling(blink::WebServiceWorker* service_worker);
+ void SetWaiting(blink::WebServiceWorker* service_worker);
+ void SetActive(blink::WebServiceWorker* service_worker);
+
void OnUpdateFound();
+ // blink::WebServiceWorkerRegistration overrides.
virtual void setProxy(blink::WebServiceWorkerRegistrationProxy* proxy);
virtual blink::WebServiceWorkerRegistrationProxy* proxy();
- virtual void setInstalling(blink::WebServiceWorker* service_worker);
- virtual void setWaiting(blink::WebServiceWorker* service_worker);
- virtual void setActive(blink::WebServiceWorker* service_worker);
-
virtual blink::WebURL scope() const;
private:

Powered by Google App Engine
This is Rietveld 408576698