Title: [181524] trunk/Source/WebCore
Revision
181524
Author
[email protected]
Date
2015-03-15 23:28:46 -0700 (Sun, 15 Mar 2015)

Log Message

Fixed the iOS build after r181522.

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

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (181523 => 181524)


--- trunk/Source/WebCore/ChangeLog	2015-03-16 05:44:03 UTC (rev 181523)
+++ trunk/Source/WebCore/ChangeLog	2015-03-16 06:28:46 UTC (rev 181524)
@@ -1,3 +1,10 @@
+2015-03-15  Dan Bernstein  <[email protected]>
+
+        Fixed the iOS build after r181522.
+
+        * page/FrameView.cpp:
+        (WebCore::FrameView::performPostLayoutTasks):
+
 2015-03-15  Andy Estes  <[email protected]>
 
         [Content Filtering] Adopt new NEFilterSource SPI

Modified: trunk/Source/WebCore/page/FrameView.cpp (181523 => 181524)


--- trunk/Source/WebCore/page/FrameView.cpp	2015-03-16 05:44:03 UTC (rev 181523)
+++ trunk/Source/WebCore/page/FrameView.cpp	2015-03-16 06:28:46 UTC (rev 181524)
@@ -2980,8 +2980,10 @@
 #if ENABLE(CSS_SCROLL_SNAP)
     if (!frame().isMainFrame()) {
         updateSnapOffsets();
+#if PLATFORM(MAC)
         if (ScrollAnimator* scrollAnimator = existingScrollAnimator())
             return scrollAnimator->updateScrollAnimatorsAndTimers();
+#endif
     }
 #endif
 }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to