summaryrefslogtreecommitdiffstats
path: root/content/renderer/gpu/input_handler_proxy_unittest.cc
diff options
context:
space:
mode:
Diffstat (limited to 'content/renderer/gpu/input_handler_proxy_unittest.cc')
-rw-r--r--content/renderer/gpu/input_handler_proxy_unittest.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/content/renderer/gpu/input_handler_proxy_unittest.cc b/content/renderer/gpu/input_handler_proxy_unittest.cc
index 9485949..ca3e2cf 100644
--- a/content/renderer/gpu/input_handler_proxy_unittest.cc
+++ b/content/renderer/gpu/input_handler_proxy_unittest.cc
@@ -125,8 +125,7 @@ class MockInputHandlerProxyClient
return new FakeWebGestureCurve(velocity, cumulative_scroll);
}
- virtual void DidOverscroll(gfx::Vector2dF overscroll,
- gfx::Vector2dF fling_velocity) {}
+ virtual void DidOverscroll(const cc::DidOverscrollParams& params) {}
private:
DISALLOW_COPY_AND_ASSIGN(MockInputHandlerProxyClient);
@@ -991,9 +990,10 @@ TEST_F(InputHandlerProxyTest, GestureFlingStopsAtContentEdge) {
testing::Mock::VerifyAndClearExpectations(&mock_input_handler_);
// Simulate hitting the bottom content edge.
- gfx::Vector2dF overscroll_amount(0, 100);
- gfx::Vector2dF overscroll_velocity(0, 10);
- input_handler_->DidOverscroll(overscroll_amount, overscroll_velocity);
+ cc::DidOverscrollParams overscroll_params;
+ overscroll_params.accumulated_overscroll = gfx::Vector2dF(0, 100);
+ overscroll_params.current_fling_velocity = gfx::Vector2dF(0, 10);
+ input_handler_->DidOverscroll(overscroll_params);
// The next call to animate will no longer scroll vertically.
EXPECT_CALL(mock_input_handler_, ScheduleAnimation());