Chromium Code Reviews| Index: content/public/browser/render_widget_host.h |
| diff --git a/content/public/browser/render_widget_host.h b/content/public/browser/render_widget_host.h |
| index f8bf0927032122249ad8c1a8c0e8778adacc60d4..30da6ca1b27e4793adb0f9927c55338fdd7db336 100644 |
| --- a/content/public/browser/render_widget_host.h |
| +++ b/content/public/browser/render_widget_host.h |
| @@ -240,12 +240,13 @@ class CONTENT_EXPORT RenderWidgetHost : public IPC::Sender { |
| virtual void AddMouseEventCallback(const MouseEventCallback& callback) = 0; |
| virtual void RemoveMouseEventCallback(const MouseEventCallback& callback) = 0; |
| - // Observer for WebInputEvents (but not input event acks). |
| + // Observer for WebInputEvents. |
| class InputEventObserver { |
| public: |
| virtual ~InputEventObserver() {} |
| virtual void OnInputEvent(const blink::WebInputEvent&) = 0; |
| + virtual void OnInputEventAck(const blink::WebInputEvent&, bool) = 0; |
|
dtapuska
2016/10/14 19:06:29
I think you need to document what this boolean rep
samuong
2016/10/20 23:36:18
Done.
|
| }; |
| // Add/remove an input event observer. |