Index: Source/core/workers/SharedWorker.h |
diff --git a/Source/core/workers/SharedWorker.h b/Source/core/workers/SharedWorker.h |
index 8be42c43819e13cf4aad3b4514875cdf2ec296f6..f8bd4b9e85daebb88f801ab940a52282c5926006 100644 |
--- a/Source/core/workers/SharedWorker.h |
+++ b/Source/core/workers/SharedWorker.h |
@@ -45,7 +45,7 @@ class CORE_EXPORT SharedWorker final : public AbstractWorker, public WillBeHeapS |
DEFINE_WRAPPERTYPEINFO(); |
WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(SharedWorker); |
public: |
- static PassRefPtrWillBeRawPtr<SharedWorker> create(ExecutionContext*, const String& url, const String& name, ExceptionState&); |
+ static SharedWorker* create(ExecutionContext*, const String& url, const String& name, ExceptionState&); |
~SharedWorker() override; |
MessagePort* port() const { return m_port.get(); } |
@@ -61,7 +61,7 @@ public: |
private: |
explicit SharedWorker(ExecutionContext*); |
- PersistentWillBeMember<MessagePort> m_port; |
+ Member<MessagePort> m_port; |
bool m_isBeingConnected; |
}; |