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

Unified Diff: Source/modules/serviceworkers/ServiceWorkerRegistration.h

Issue 1212643004: [Oilpan] Apply RefCountedGarbageCollectedEventTarget on AbstractWorker (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove some redundant includes Created 5 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: Source/modules/serviceworkers/ServiceWorkerRegistration.h
diff --git a/Source/modules/serviceworkers/ServiceWorkerRegistration.h b/Source/modules/serviceworkers/ServiceWorkerRegistration.h
index 7b1c42015c6ad290668215ed27aae85a6d407c17..4eac382a4b5f14715d645c87fc26f33b13db364c 100644
--- a/Source/modules/serviceworkers/ServiceWorkerRegistration.h
+++ b/Source/modules/serviceworkers/ServiceWorkerRegistration.h
@@ -47,9 +47,9 @@ public:
static ServiceWorkerRegistration* take(ScriptPromiseResolver*, WebServiceWorkerRegistration*);
static void dispose(WebServiceWorkerRegistration*);
- PassRefPtrWillBeRawPtr<ServiceWorker> installing() { return m_installing.get(); }
- PassRefPtrWillBeRawPtr<ServiceWorker> waiting() { return m_waiting.get(); }
- PassRefPtrWillBeRawPtr<ServiceWorker> active() { return m_active.get(); }
+ ServiceWorker* installing() { return m_installing; }
+ ServiceWorker* waiting() { return m_waiting; }
+ ServiceWorker* active() { return m_active; }
String scope() const;
@@ -76,9 +76,9 @@ private:
OwnPtr<WebServiceWorkerRegistration> m_outerRegistration;
WebServiceWorkerProvider* m_provider;
- RefPtrWillBeMember<ServiceWorker> m_installing;
- RefPtrWillBeMember<ServiceWorker> m_waiting;
- RefPtrWillBeMember<ServiceWorker> m_active;
+ Member<ServiceWorker> m_installing;
+ Member<ServiceWorker> m_waiting;
+ Member<ServiceWorker> m_active;
bool m_stopped;
};

Powered by Google App Engine
This is Rietveld 408576698