Chromium Code Reviews| Index: third_party/WebKit/public/web/WebWidget.h |
| diff --git a/third_party/WebKit/public/web/WebWidget.h b/third_party/WebKit/public/web/WebWidget.h |
| index 452b8434c95c8ebe8b4945d10ef2c074ffc06df9..4e45ca5b2d52bf45a2f56264be5c27374c436918 100644 |
| --- a/third_party/WebKit/public/web/WebWidget.h |
| +++ b/third_party/WebKit/public/web/WebWidget.h |
| @@ -117,7 +117,10 @@ class WebWidget { |
| virtual void themeChanged() {} |
| // Called to inform the WebWidget of an input event. |
| - virtual WebInputEventResult handleInputEvent(const WebInputEvent&) { |
| + virtual WebInputEventResult handleInputEvent( |
| + const WebInputEvent&, |
| + const std::vector<const WebInputEvent*>& = |
|
Navid Zolghadr
2016/11/07 16:01:30
This was a very confusing part for me. I wasn't su
|
| + std::vector<const WebInputEvent*>()) { |
| return WebInputEventResult::NotHandled; |
| } |