Title: [249094] trunk/Source/WebCore
Revision
249094
Author
[email protected]
Date
2019-08-26 02:41:28 -0700 (Mon, 26 Aug 2019)

Log Message

MessagePort should be WeakPtrFactoryInitialization::Eager
https://bugs.webkit.org/show_bug.cgi?id=201073

Reviewed by Chris Dumez.

Covered by existing layout tests.

* dom/MessagePort.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (249093 => 249094)


--- trunk/Source/WebCore/ChangeLog	2019-08-26 06:16:50 UTC (rev 249093)
+++ trunk/Source/WebCore/ChangeLog	2019-08-26 09:41:28 UTC (rev 249094)
@@ -1,3 +1,14 @@
+2019-08-26  Youenn Fablet  <[email protected]>
+
+        MessagePort should be WeakPtrFactoryInitialization::Eager
+        https://bugs.webkit.org/show_bug.cgi?id=201073
+
+        Reviewed by Chris Dumez.
+
+        Covered by existing layout tests.
+
+        * dom/MessagePort.h:
+
 2019-08-24  Simon Fraser  <[email protected]>
 
         Have RenderLayer::calculateClipRects() use offsetFromAncestor() when possible

Modified: trunk/Source/WebCore/dom/MessagePort.h (249093 => 249094)


--- trunk/Source/WebCore/dom/MessagePort.h	2019-08-26 06:16:50 UTC (rev 249093)
+++ trunk/Source/WebCore/dom/MessagePort.h	2019-08-26 09:41:28 UTC (rev 249094)
@@ -44,7 +44,7 @@
 
 class Frame;
 
-class MessagePort final : public ActiveDOMObject, public EventTargetWithInlineData, public CanMakeWeakPtr<MessagePort> {
+class MessagePort final : public ActiveDOMObject, public EventTargetWithInlineData, public CanMakeWeakPtr<MessagePort, WeakPtrFactoryInitialization::Eager> {
     WTF_MAKE_NONCOPYABLE(MessagePort);
     WTF_MAKE_ISO_ALLOCATED(MessagePort);
 public:
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to