Index: Source/modules/serviceworkers/ServiceWorkerMessageEvent.h |
diff --git a/Source/modules/serviceworkers/ServiceWorkerMessageEvent.h b/Source/modules/serviceworkers/ServiceWorkerMessageEvent.h |
index 37aa4de7bf1c6f276b1d3b5fe269d7c4bf34d6dd..da6f44d31e9de016532d4495b2d01367ba138833 100644 |
--- a/Source/modules/serviceworkers/ServiceWorkerMessageEvent.h |
+++ b/Source/modules/serviceworkers/ServiceWorkerMessageEvent.h |
@@ -26,7 +26,7 @@ public: |
return adoptRefWillBeNoop(new ServiceWorkerMessageEvent(type, initializer)); |
} |
- static PassRefPtrWillBeRawPtr<ServiceWorkerMessageEvent> create(MessagePortArray* ports, PassRefPtr<SerializedScriptValue> data, PassRefPtrWillBeRawPtr<ServiceWorker> source, const String& origin) |
+ static PassRefPtrWillBeRawPtr<ServiceWorkerMessageEvent> create(MessagePortArray* ports, PassRefPtr<SerializedScriptValue> data, ServiceWorker* source, const String& origin) |
{ |
return adoptRefWillBeNoop(new ServiceWorkerMessageEvent(data, origin, String(), source, ports)); |
} |
@@ -48,13 +48,13 @@ public: |
private: |
ServiceWorkerMessageEvent(); |
ServiceWorkerMessageEvent(const AtomicString& type, const ServiceWorkerMessageEventInit& initializer); |
- ServiceWorkerMessageEvent(PassRefPtr<SerializedScriptValue> data, const String& origin, const String& lastEventId, PassRefPtrWillBeRawPtr<ServiceWorker> source, MessagePortArray* ports); |
+ ServiceWorkerMessageEvent(PassRefPtr<SerializedScriptValue> data, const String& origin, const String& lastEventId, ServiceWorker* source, MessagePortArray* ports); |
ScriptValue m_data; |
RefPtr<SerializedScriptValue> m_serializedData; |
String m_origin; |
String m_lastEventId; |
- RefPtrWillBeMember<ServiceWorker> m_sourceAsServiceWorker; |
+ PersistentWillBeMember<ServiceWorker> m_sourceAsServiceWorker; |
PersistentWillBeMember<MessagePort> m_sourceAsMessagePort; |
PersistentWillBeMember<MessagePortArray> m_ports; |
}; |