| Index: content/renderer/input/render_widget_input_handler.cc
|
| diff --git a/content/renderer/input/render_widget_input_handler.cc b/content/renderer/input/render_widget_input_handler.cc
|
| index a84bdb380b0c46f527849324320503392422d5de..cee3eea5d56cfa61e4954410ac51e7232439e155 100644
|
| --- a/content/renderer/input/render_widget_input_handler.cc
|
| +++ b/content/renderer/input/render_widget_input_handler.cc
|
| @@ -45,6 +45,7 @@ using blink::WebInputEventResult;
|
| using blink::WebKeyboardEvent;
|
| using blink::WebMouseEvent;
|
| using blink::WebMouseWheelEvent;
|
| +using blink::WebScrollBoundaryBehavior;
|
| using blink::WebTouchEvent;
|
| using blink::WebTouchPoint;
|
| using ui::DidOverscrollParams;
|
| @@ -446,7 +447,8 @@ void RenderWidgetInputHandler::DidOverscrollFromBlink(
|
| const WebFloatSize& overscrollDelta,
|
| const WebFloatSize& accumulatedOverscroll,
|
| const WebFloatPoint& position,
|
| - const WebFloatSize& velocity) {
|
| + const WebFloatSize& velocity,
|
| + const WebScrollBoundaryBehavior& behavior) {
|
| std::unique_ptr<DidOverscrollParams> params(new DidOverscrollParams());
|
| params->accumulated_overscroll = gfx::Vector2dF(
|
| accumulatedOverscroll.width, accumulatedOverscroll.height);
|
| @@ -455,6 +457,7 @@ void RenderWidgetInputHandler::DidOverscrollFromBlink(
|
| params->current_fling_velocity =
|
| gfx::Vector2dF(velocity.width, velocity.height);
|
| params->causal_event_viewport_point = gfx::PointF(position.x, position.y);
|
| + params->scroll_boundary_behavior = behavior;
|
|
|
| // If we're currently handling an event, stash the overscroll data such that
|
| // it can be bundled in the event ack.
|
|
|