Title: [107472] trunk/Source/WebCore
Revision
107472
Author
m...@apple.com
Date
2012-02-10 20:00:10 -0800 (Fri, 10 Feb 2012)

Log Message

Non-threaded scrolling build fix.

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

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (107471 => 107472)


--- trunk/Source/WebCore/ChangeLog	2012-02-11 03:58:05 UTC (rev 107471)
+++ trunk/Source/WebCore/ChangeLog	2012-02-11 04:00:10 UTC (rev 107472)
@@ -1,3 +1,10 @@
+2012-02-10  Dan Bernstein  <m...@apple.com>
+
+        Non-threaded scrolling build fix.
+
+        * page/FrameView.cpp:
+        (WebCore::FrameView::requestScrollPositionUpdate):
+
 2012-02-10  Edward O'Connor  <eocon...@apple.com>
 
         Change values for WEBKIT_KEYFRAMES_RULE, WEBKIT_KEYFRAME_RULE

Modified: trunk/Source/WebCore/page/FrameView.cpp (107471 => 107472)


--- trunk/Source/WebCore/page/FrameView.cpp	2012-02-11 03:58:05 UTC (rev 107471)
+++ trunk/Source/WebCore/page/FrameView.cpp	2012-02-11 04:00:10 UTC (rev 107472)
@@ -1766,6 +1766,8 @@
         if (ScrollingCoordinator* scrollingCoordinator = page->scrollingCoordinator())
             return scrollingCoordinator->requestScrollPositionUpdate(this, position);
     }
+#else
+    UNUSED_PARAM(position);
 #endif
 
     return false;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to