Index: cc/trees/thread_proxy.cc |
diff --git a/cc/trees/thread_proxy.cc b/cc/trees/thread_proxy.cc |
index 429020496307c85b14ef0cef406e4dd2c0ed823e..7760de1b9d3a04eca66a77f7c6bdd7e6de7d8a99 100644 |
--- a/cc/trees/thread_proxy.cc |
+++ b/cc/trees/thread_proxy.cc |
@@ -1096,9 +1096,9 @@ void ThreadProxy::RenewTreePriority() { |
// have a scroll listener. This gives the scroll listener a better chance of |
// handling scroll updates within the same frame. The tree itself is still |
// kept in prefer smoothness mode to allow checkerboarding. |
- impl().scheduler->SetImplLatencyTakesPriority( |
- priority == SMOOTHNESS_TAKES_PRIORITY && |
- !impl().layer_tree_host_impl->scroll_affects_scroll_handler()); |
+ impl().scheduler->SetSmoothnessMode( |
+ priority == SMOOTHNESS_TAKES_PRIORITY, |
+ impl().layer_tree_host_impl->scroll_affects_scroll_handler()); |
// Notify the the client of this compositor via the output surface. |
// TODO(epenner): Route this to compositor-thread instead of output-surface |