Chromium Code Reviews| Index: content/renderer/input/input_handler_manager_client.h |
| diff --git a/content/renderer/input/input_handler_manager_client.h b/content/renderer/input/input_handler_manager_client.h |
| index cdc38633eaeabe73c6c05d9519166f8e3db80dc3..cf9a1f30bc364ed1f943e91abc41341f3731aa64 100644 |
| --- a/content/renderer/input/input_handler_manager_client.h |
| +++ b/content/renderer/input/input_handler_manager_client.h |
| @@ -13,17 +13,13 @@ |
| #include "third_party/WebKit/public/web/WebInputEvent.h" |
| #include "ui/gfx/geometry/vector2d_f.h" |
| -namespace ui { |
| -class LatencyInfo; |
| -struct DidOverscrollParams; |
| -} |
| - |
| namespace cc { |
| class InputHandler; |
| } |
| namespace ui { |
| class SynchronousInputHandlerProxy; |
| +struct DidOverscrollParams; |
| } |
| namespace content { |
| @@ -43,6 +39,9 @@ class CONTENT_EXPORT InputHandlerManagerClient { |
| // Called from the compositor thread. |
| virtual void RegisterRoutingID(int routing_id) = 0; |
| virtual void UnregisterRoutingID(int routing_id) = 0; |
| + |
| + // Fired when the overscroll was NOT caused by InputEvent. |
| + // InputEvent associated overscroll will be returned along with the callback. |
|
dtapuska
2016/08/30 18:33:50
Likely should reference what callback you are indi
chongz
2016/08/30 19:47:04
Done.
|
| virtual void DidOverscroll(int routing_id, |
| const ui::DidOverscrollParams& params) = 0; |
| virtual void DidStartFlinging(int routing_id) = 0; |