| 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 0cda573dd0dbbf3126444ccbee30054cab779341..7005ece92a949acc04ecd59af1e3d9b7e10e8c97 100644
|
| --- a/content/public/browser/render_widget_host.h
|
| +++ b/content/public/browser/render_widget_host.h
|
| @@ -243,12 +243,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 OnInputEvent(const blink::WebInputEvent&) {};
|
| + virtual void OnInputEventAck(const blink::WebInputEvent&) {};
|
| };
|
|
|
| // Add/remove an input event observer.
|
|
|