Title: [235428] trunk/Source/WebCore
Revision
235428
Author
aj...@chromium.org
Date
2018-08-28 10:53:15 -0700 (Tue, 28 Aug 2018)

Log Message

[IntersectionObserver] Fix build after r235424
https://bugs.webkit.org/show_bug.cgi?id=189051

Rubber-stamped by Simon Fraser.

Fix unused variable warning by using the variable.

* page/FrameView.cpp:
(WebCore::FrameView::viewportContentsChanged):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (235427 => 235428)


--- trunk/Source/WebCore/ChangeLog	2018-08-28 17:02:56 UTC (rev 235427)
+++ trunk/Source/WebCore/ChangeLog	2018-08-28 17:53:15 UTC (rev 235428)
@@ -1,3 +1,15 @@
+2018-08-28  Ali Juma  <aj...@chromium.org>
+
+        [IntersectionObserver] Fix build after r235424
+        https://bugs.webkit.org/show_bug.cgi?id=189051
+
+        Rubber-stamped by Simon Fraser.
+
+        Fix unused variable warning by using the variable.
+
+        * page/FrameView.cpp:
+        (WebCore::FrameView::viewportContentsChanged):
+
 2018-08-28  Aditya Keerthi  <akeer...@apple.com>
 
         [iOS] Support inputmode=none

Modified: trunk/Source/WebCore/page/FrameView.cpp (235427 => 235428)


--- trunk/Source/WebCore/page/FrameView.cpp	2018-08-28 17:02:56 UTC (rev 235427)
+++ trunk/Source/WebCore/page/FrameView.cpp	2018-08-28 17:53:15 UTC (rev 235428)
@@ -2004,7 +2004,7 @@
 
 #if ENABLE(INTERSECTION_OBSERVER)
     if (auto* document = frame().document())
-        frame().document()->scheduleIntersectionObservationUpdate();
+        document->scheduleIntersectionObservationUpdate();
 #endif
 }
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to