Title: [168662] trunk/Source/WebCore
Revision
168662
Author
simon.fra...@apple.com
Date
2014-05-12 17:21:04 -0700 (Mon, 12 May 2014)

Log Message

Fix the iOS build.

* page/scrolling/ScrollingCoordinator.cpp:
(WebCore::ScrollingCoordinator::contentShadowLayerForFrameView):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (168661 => 168662)


--- trunk/Source/WebCore/ChangeLog	2014-05-13 00:14:01 UTC (rev 168661)
+++ trunk/Source/WebCore/ChangeLog	2014-05-13 00:21:04 UTC (rev 168662)
@@ -1,5 +1,12 @@
 2014-05-12  Simon Fraser  <simon.fra...@apple.com>
 
+        Fix the iOS build.
+
+        * page/scrolling/ScrollingCoordinator.cpp:
+        (WebCore::ScrollingCoordinator::contentShadowLayerForFrameView):
+
+2014-05-12  Simon Fraser  <simon.fra...@apple.com>
+
         [iOS WK2] Fuzzy tiles on some sites on loading
         https://bugs.webkit.org/show_bug.cgi?id=132847
         <rdar://problem/16816178>

Modified: trunk/Source/WebCore/page/scrolling/ScrollingCoordinator.cpp (168661 => 168662)


--- trunk/Source/WebCore/page/scrolling/ScrollingCoordinator.cpp	2014-05-13 00:14:01 UTC (rev 168661)
+++ trunk/Source/WebCore/page/scrolling/ScrollingCoordinator.cpp	2014-05-13 00:21:04 UTC (rev 168662)
@@ -257,9 +257,13 @@
 
 GraphicsLayer* ScrollingCoordinator::contentShadowLayerForFrameView(FrameView* frameView)
 {
+#if ENABLE(RUBBER_BANDING)
     if (RenderView* renderView = frameView->frame().contentRenderer())
         return renderView->compositor().layerForContentShadow();
+#else
+    UNUSED_PARAM(frameView);
     return nullptr;
+#endif
 }
 
 GraphicsLayer* ScrollingCoordinator::rootContentLayerForFrameView(FrameView* frameView)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to