Title: [225756] trunk/Source/WebCore
Revision
225756
Author
[email protected]
Date
2017-12-11 14:27:43 -0800 (Mon, 11 Dec 2017)

Log Message

Make FrameView objects IsoHeap allocated
https://bugs.webkit.org/show_bug.cgi?id=180668
<rdar://problem/35976738>

Reviewed by Simon Fraser.

Related to <https://trac.webkit.org/changeset/225719/webkit>

* page/FrameView.cpp:
* page/FrameView.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (225755 => 225756)


--- trunk/Source/WebCore/ChangeLog	2017-12-11 21:29:49 UTC (rev 225755)
+++ trunk/Source/WebCore/ChangeLog	2017-12-11 22:27:43 UTC (rev 225756)
@@ -1,3 +1,16 @@
+2017-12-11  Zalan Bujtas  <[email protected]>
+
+        Make FrameView objects IsoHeap allocated
+        https://bugs.webkit.org/show_bug.cgi?id=180668
+        <rdar://problem/35976738>
+
+        Reviewed by Simon Fraser.
+
+        Related to <https://trac.webkit.org/changeset/225719/webkit>
+
+        * page/FrameView.cpp:
+        * page/FrameView.h:
+
 2017-12-11  Antoine Quint  <[email protected]>
 
         [Web Animations] Implement AnimationPlaybackEvent and AnimationPlaybackEventInit

Modified: trunk/Source/WebCore/page/FrameView.cpp (225755 => 225756)


--- trunk/Source/WebCore/page/FrameView.cpp	2017-12-11 21:29:49 UTC (rev 225755)
+++ trunk/Source/WebCore/page/FrameView.cpp	2017-12-11 22:27:43 UTC (rev 225756)
@@ -98,6 +98,7 @@
 #include <wtf/text/TextStream.h>
 
 #include <wtf/CurrentTime.h>
+#include <wtf/IsoMallocInlines.h>
 #include <wtf/MemoryPressureHandler.h>
 #include <wtf/Ref.h>
 #include <wtf/SetForScope.h>
@@ -120,6 +121,8 @@
 
 using namespace HTMLNames;
 
+WTF_MAKE_ISO_ALLOCATED_IMPL(FrameView);
+
 double FrameView::sCurrentPaintTimeStamp = 0.0;
 
 // The maximum number of updateEmbeddedObjects iterations that should be done before returning.

Modified: trunk/Source/WebCore/page/FrameView.h (225755 => 225756)


--- trunk/Source/WebCore/page/FrameView.h	2017-12-11 21:29:49 UTC (rev 225755)
+++ trunk/Source/WebCore/page/FrameView.h	2017-12-11 22:27:43 UTC (rev 225756)
@@ -39,6 +39,7 @@
 #include <wtf/Forward.h>
 #include <wtf/Function.h>
 #include <wtf/HashSet.h>
+#include <wtf/IsoMalloc.h>
 #include <wtf/ListHashSet.h>
 #include <wtf/text/WTFString.h>
 
@@ -67,6 +68,7 @@
 Pagination::Mode paginationModeForRenderStyle(const RenderStyle&);
 
 class FrameView final : public ScrollView {
+    WTF_MAKE_ISO_ALLOCATED(FrameView);
 public:
     friend class RenderView;
     friend class Internals;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to