Title: [171133] trunk/Source/WebCore
Revision
171133
Author
simon.fra...@apple.com
Date
2014-07-15 20:06:15 -0700 (Tue, 15 Jul 2014)

Log Message

Fix non-iOS builds.

* rendering/RenderBox.cpp:
(WebCore::shouldAppyContainersClipAndOffset):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (171132 => 171133)


--- trunk/Source/WebCore/ChangeLog	2014-07-16 02:58:21 UTC (rev 171132)
+++ trunk/Source/WebCore/ChangeLog	2014-07-16 03:06:15 UTC (rev 171133)
@@ -1,5 +1,12 @@
 2014-07-15  Simon Fraser  <simon.fra...@apple.com>
 
+        Fix non-iOS builds.
+
+        * rendering/RenderBox.cpp:
+        (WebCore::shouldAppyContainersClipAndOffset):
+
+2014-07-15  Simon Fraser  <simon.fra...@apple.com>
+
         [iOS] Fix touches inside accelerated overflow:scroll
         https://bugs.webkit.org/show_bug.cgi?id=134961
         <rdar://problem/16088789>

Modified: trunk/Source/WebCore/rendering/RenderBox.cpp (171132 => 171133)


--- trunk/Source/WebCore/rendering/RenderBox.cpp	2014-07-16 02:58:21 UTC (rev 171132)
+++ trunk/Source/WebCore/rendering/RenderBox.cpp	2014-07-16 03:06:15 UTC (rev 171133)
@@ -2118,6 +2118,8 @@
 
     return !containerBox->hasLayer() || !containerBox->layer()->usesCompositedScrolling();
 #else
+    UNUSED_PARAM(repaintContainer);
+    UNUSED_PARAM(containerBox);
     return true;
 #endif
 }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to