| Index: cc/trees/layer_tree_host_impl_unittest.cc
|
| diff --git a/cc/trees/layer_tree_host_impl_unittest.cc b/cc/trees/layer_tree_host_impl_unittest.cc
|
| index 08774f1263bb9efc0d8f8f4a402046fad5a2a8a9..9f8ea0f6850643d56a3af3d92e816a24bf551512 100644
|
| --- a/cc/trees/layer_tree_host_impl_unittest.cc
|
| +++ b/cc/trees/layer_tree_host_impl_unittest.cc
|
| @@ -2221,7 +2221,7 @@ TEST_F(LayerTreeHostImplTest, ScrollNonAxisAlignedRotatedLayer) {
|
| // Scroll down in screen coordinates with a gesture.
|
| gfx::Vector2d gesture_scroll_delta(0, 10);
|
| EXPECT_EQ(InputHandler::ScrollStarted,
|
| - host_impl_->ScrollBegin(gfx::Point(),
|
| + host_impl_->ScrollBegin(gfx::Point(1, 1),
|
| InputHandler::Gesture));
|
| host_impl_->ScrollBy(gfx::Point(), gesture_scroll_delta);
|
| host_impl_->ScrollEnd();
|
| @@ -2246,7 +2246,7 @@ TEST_F(LayerTreeHostImplTest, ScrollNonAxisAlignedRotatedLayer) {
|
| gfx::Vector2dF());
|
| gfx::Vector2d gesture_scroll_delta(10, 0);
|
| EXPECT_EQ(InputHandler::ScrollStarted,
|
| - host_impl_->ScrollBegin(gfx::Point(),
|
| + host_impl_->ScrollBegin(gfx::Point(1, 1),
|
| InputHandler::Gesture));
|
| host_impl_->ScrollBy(gfx::Point(), gesture_scroll_delta);
|
| host_impl_->ScrollEnd();
|
|
|