Index: content/renderer/input/render_widget_input_handler.h |
diff --git a/content/renderer/input/render_widget_input_handler.h b/content/renderer/input/render_widget_input_handler.h |
index 4d030777373f4007ac6290adbd7d887c0f18a9bf..453ac9f0ae33e9cafd276e33c8253065c0f5f923 100644 |
--- a/content/renderer/input/render_widget_input_handler.h |
+++ b/content/renderer/input/render_widget_input_handler.h |
@@ -19,6 +19,7 @@ |
namespace blink { |
struct WebFloatPoint; |
struct WebFloatSize; |
+struct WebScrollBoundaryBehavior; |
} |
namespace ui { |
@@ -45,11 +46,11 @@ class CONTENT_EXPORT RenderWidgetInputHandler { |
HandledEventCallback callback); |
// Handle overscroll from Blink. |
- void DidOverscrollFromBlink( |
- const blink::WebFloatSize& overscrollDelta, |
- const blink::WebFloatSize& accumulatedOverscroll, |
- const blink::WebFloatPoint& position, |
- const blink::WebFloatSize& velocity); |
+ void DidOverscrollFromBlink(const blink::WebFloatSize& overscrollDelta, |
+ const blink::WebFloatSize& accumulatedOverscroll, |
+ const blink::WebFloatPoint& position, |
+ const blink::WebFloatSize& velocity, |
+ const blink::WebScrollBoundaryBehavior& behavior); |
bool handling_input_event() const { return handling_input_event_; } |
void set_handling_input_event(bool handling_input_event) { |