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

Unified Diff: Source/core/workers/SharedWorker.h

Issue 1212643004: [Oilpan] Apply RefCountedGarbageCollectedEventTarget on AbstractWorker (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 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/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;
};

Powered by Google App Engine
This is Rietveld 408576698