Skip to content

Commit

Permalink
Tried to fix the iOS build.
Browse files Browse the repository at this point in the history
* page/scrolling/ios/ScrollingTreeIOS.cpp:
(WebCore::ScrollingTreeIOS::scrollingTreeNodeDidScroll):



git-svn-id: http://svn.webkit.org/repository/webkit/trunk@177855 268f45cc-cd09-0410-ab3c-d52691b4dbfc
  • Loading branch information
[email protected] committed Jan 2, 2015
1 parent df675b0 commit 15e1220
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions Source/WebCore/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
2015-01-01 Dan Bernstein <[email protected]>

Tried to fix the iOS build.

* page/scrolling/ios/ScrollingTreeIOS.cpp:
(WebCore::ScrollingTreeIOS::scrollingTreeNodeDidScroll):

2015-01-01 Darin Adler <[email protected]>

Fix itearator typo
Expand Down
2 changes: 1 addition & 1 deletion Source/WebCore/page/scrolling/ios/ScrollingTreeIOS.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ void ScrollingTreeIOS::scrollingTreeNodeDidScroll(ScrollingNodeID nodeID, const
bool localIsHandlingProgrammaticScroll = isHandlingProgrammaticScroll();

callOnMainThread([scrollingCoordinator, nodeID, scrollPosition, localIsHandlingProgrammaticScroll, scrollingLayerPositionAction] {
scrollingCoordinator->scheduleUpdateScrollPositionAfterAsyncScroll(nodeID, scrollPosition, isHandlingProgrammaticScroll, scrollingLayerPositionAction);
scrollingCoordinator->scheduleUpdateScrollPositionAfterAsyncScroll(nodeID, scrollPosition, localIsHandlingProgrammaticScroll, scrollingLayerPositionAction);
});
}

Expand Down

0 comments on commit 15e1220

Please sign in to comment.