Title: [161308] trunk/Source/WebCore
Revision
161308
Author
[email protected]
Date
2014-01-03 23:43:10 -0800 (Fri, 03 Jan 2014)

Log Message

Attempt to fix EFL build.

* page/scrolling/ScrollingStateTree.cpp:
(WebCore::ScrollingStateTree::setHasChangedProperties):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (161307 => 161308)


--- trunk/Source/WebCore/ChangeLog	2014-01-04 04:59:46 UTC (rev 161307)
+++ trunk/Source/WebCore/ChangeLog	2014-01-04 07:43:10 UTC (rev 161308)
@@ -1,5 +1,12 @@
 2014-01-03  Simon Fraser  <[email protected]>
 
+        Attempt to fix EFL build.
+
+        * page/scrolling/ScrollingStateTree.cpp:
+        (WebCore::ScrollingStateTree::setHasChangedProperties):
+
+2014-01-03  Simon Fraser  <[email protected]>
+
         Clean up the means of committing the scrolling state tree
         https://bugs.webkit.org/show_bug.cgi?id=126482
 

Modified: trunk/Source/WebCore/page/scrolling/ScrollingStateTree.cpp (161307 => 161308)


--- trunk/Source/WebCore/page/scrolling/ScrollingStateTree.cpp	2014-01-04 04:59:46 UTC (rev 161307)
+++ trunk/Source/WebCore/page/scrolling/ScrollingStateTree.cpp	2014-01-04 07:43:10 UTC (rev 161308)
@@ -53,12 +53,16 @@
 
 void ScrollingStateTree::setHasChangedProperties(bool changedProperties)
 {
+#if ENABLE(ASYNC_SCROLLING)
     bool gainedChangedProperties = !m_hasChangedProperties && changedProperties;
+#endif
 
     m_hasChangedProperties = changedProperties;
 
+#if ENABLE(ASYNC_SCROLLING)
     if (gainedChangedProperties && m_scrollingCoordinator)
         m_scrollingCoordinator->scrollingStateTreePropertiesChanged();
+#endif
 }
 
 ScrollingNodeID ScrollingStateTree::attachNode(ScrollingNodeType nodeType, ScrollingNodeID newNodeID, ScrollingNodeID parentID)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to