| Index: cc/trees/layer_tree_host_impl.cc
|
| diff --git a/cc/trees/layer_tree_host_impl.cc b/cc/trees/layer_tree_host_impl.cc
|
| index 32c1db514e2e1b110c271b3afdb313ebb834a045..e66a3906e17db7d3124377331a65b3a661aa3ad5 100644
|
| --- a/cc/trees/layer_tree_host_impl.cc
|
| +++ b/cc/trees/layer_tree_host_impl.cc
|
| @@ -3010,7 +3010,7 @@ static void CollectScrollDeltas(ScrollAndScaleSet* scroll_info,
|
| if (!scroll_delta.IsZero()) {
|
| LayerTreeHostCommon::ScrollUpdateInfo scroll;
|
| scroll.layer_id = layer_impl->id();
|
| - scroll.scroll_delta = gfx::Vector2dF(scroll_delta.x(), scroll_delta.y());
|
| + scroll.scroll_delta = gfx::Vector2d(scroll_delta.x(), scroll_delta.y());
|
| scroll_info->scrolls.push_back(scroll);
|
| }
|
|
|
|
|