Index: content/renderer/input/input_handler_proxy.cc |
diff --git a/content/renderer/input/input_handler_proxy.cc b/content/renderer/input/input_handler_proxy.cc |
index f75dc9d2fc2007078fed92fdbf38f8626b6c91d3..f51632c1087dd06005acb9c91bc3887d03861b2f 100644 |
--- a/content/renderer/input/input_handler_proxy.cc |
+++ b/content/renderer/input/input_handler_proxy.cc |
@@ -4,9 +4,11 @@ |
#include "content/renderer/input/input_handler_proxy.h" |
+#include "base/auto_reset.h" |
#include "base/debug/trace_event.h" |
#include "base/logging.h" |
#include "base/metrics/histogram.h" |
+#include "content/common/input/did_overscroll_params.h" |
#include "content/common/input/web_input_event_traits.h" |
#include "content/renderer/input/input_handler_proxy_client.h" |
#include "third_party/WebKit/public/platform/Platform.h" |
@@ -369,8 +371,16 @@ |
client_->DidStopFlinging(); |
} |
-void InputHandlerProxy::DidOverscroll(const cc::DidOverscrollParams& params) { |
+void InputHandlerProxy::DidOverscroll( |
+ const gfx::Vector2dF& accumulated_overscroll, |
+ const gfx::Vector2dF& latest_overscroll_delta) { |
DCHECK(client_); |
+ |
+ DidOverscrollParams params; |
+ params.accumulated_overscroll = accumulated_overscroll; |
+ params.latest_overscroll_delta = latest_overscroll_delta; |
+ params.current_fling_velocity = current_fling_velocity_; |
+ |
if (fling_curve_) { |
static const int kFlingOverscrollThreshold = 1; |
disallow_horizontal_fling_scroll_ |= |
@@ -403,6 +413,7 @@ |
had_fling_animation); |
fling_curve_.reset(); |
gesture_scroll_on_impl_thread_ = false; |
+ current_fling_velocity_ = gfx::Vector2dF(); |
fling_parameters_ = blink::WebActiveWheelFlingParameters(); |
if (send_fling_stopped_notification && had_fling_animation) |
client_->DidStopFlinging(); |
@@ -452,15 +463,22 @@ |
return gfx::Vector2dF(-increment.width, -increment.height); |
} |
-void InputHandlerProxy::scrollBy(const WebFloatSize& increment) { |
+bool InputHandlerProxy::scrollBy(const WebFloatSize& increment, |
+ const WebFloatSize& velocity) { |
WebFloatSize clipped_increment; |
- if (!disallow_horizontal_fling_scroll_) |
+ WebFloatSize clipped_velocity; |
+ if (!disallow_horizontal_fling_scroll_) { |
clipped_increment.width = increment.width; |
- if (!disallow_vertical_fling_scroll_) |
+ clipped_velocity.width = velocity.width; |
+ } |
+ if (!disallow_vertical_fling_scroll_) { |
clipped_increment.height = increment.height; |
- |
+ clipped_velocity.height = velocity.height; |
+ } |
+ |
+ current_fling_velocity_ = clipped_velocity; |
if (clipped_increment == WebFloatSize()) |
- return; |
+ return false; |
TRACE_EVENT2("input", |
"InputHandlerProxy::scrollBy", |
@@ -477,6 +495,7 @@ |
break; |
case WebGestureEvent::Touchscreen: |
clipped_increment = ToClientScrollIncrement(clipped_increment); |
+ clipped_velocity = ToClientScrollIncrement(clipped_velocity); |
did_scroll = input_handler_->ScrollBy(fling_parameters_.point, |
clipped_increment); |
break; |
@@ -486,17 +505,8 @@ |
fling_parameters_.cumulativeScroll.width += clipped_increment.width; |
fling_parameters_.cumulativeScroll.height += clipped_increment.height; |
} |
-} |
- |
-void InputHandlerProxy::notifyCurrentFlingVelocity( |
- const WebFloatSize& velocity) { |
- TRACE_EVENT2("input", |
- "InputHandlerProxy::notifyCurrentFlingVelocity", |
- "vx", |
- velocity.width, |
- "vy", |
- velocity.height); |
- input_handler_->NotifyCurrentFlingVelocity(ToClientScrollIncrement(velocity)); |
+ |
+ return did_scroll; |
} |
} // namespace content |