Index: Source/modules/serviceworkers/ServiceWorkerGlobalScope.h |
diff --git a/Source/modules/serviceworkers/ServiceWorkerGlobalScope.h b/Source/modules/serviceworkers/ServiceWorkerGlobalScope.h |
index fcd3d1816c319af2d8f159a2f80d2e3dc976d4de..c6d02f93232c4757de277a6b4c6944282c29bdfd 100644 |
--- a/Source/modules/serviceworkers/ServiceWorkerGlobalScope.h |
+++ b/Source/modules/serviceworkers/ServiceWorkerGlobalScope.h |
@@ -68,7 +68,7 @@ public: |
// ServiceWorkerGlobalScope.idl |
ServiceWorkerClients* clients(); |
ServiceWorkerRegistration* registration(); |
- PassRefPtrWillBeRawPtr<StashedPortCollection> ports(); |
+ StashedPortCollection* ports(); |
ScriptPromise fetch(ScriptState*, const RequestInfo&, const Dictionary&, ExceptionState&); |
@@ -104,7 +104,7 @@ private: |
PersistentWillBeMember<ServiceWorkerClients> m_clients; |
PersistentWillBeMember<ServiceWorkerRegistration> m_registration; |
- RefPtrWillBeMember<StashedPortCollection> m_ports; |
+ PersistentWillBeMember<StashedPortCollection> m_ports; |
bool m_didEvaluateScript; |
bool m_hadErrorInTopLevelEventHandler; |
unsigned m_eventNestingLevel; |