Index: cc/trees/layer_tree_host.cc |
diff --git a/cc/trees/layer_tree_host.cc b/cc/trees/layer_tree_host.cc |
index 7b0972645a5a0157c49564324626a6dd5b7dfbbd..829d9e694460da4562d069d15250dff0c99b27c2 100644 |
--- a/cc/trees/layer_tree_host.cc |
+++ b/cc/trees/layer_tree_host.cc |
@@ -1049,8 +1049,8 @@ void LayerTreeHost::SetDeviceScaleFactor(float device_scale_factor) { |
SetNeedsCommit(); |
} |
-void LayerTreeHost::UpdateTopControlsState(bool enable_hiding, |
- bool enable_showing, |
+void LayerTreeHost::UpdateTopControlsState(TopControlsState constraints, |
+ TopControlsState current, |
bool animate) { |
if (!settings_.calculate_top_controls_position) |
return; |
@@ -1059,8 +1059,8 @@ void LayerTreeHost::UpdateTopControlsState(bool enable_hiding, |
proxy_->ImplThread()->PostTask( |
base::Bind(&TopControlsManager::UpdateTopControlsState, |
top_controls_manager_weak_ptr_, |
- enable_hiding, |
- enable_showing, |
+ constraints, |
+ current, |
animate)); |
} |