| Index: third_party/WebKit/Source/web/PageWidgetDelegate.h
|
| diff --git a/third_party/WebKit/Source/web/PageWidgetDelegate.h b/third_party/WebKit/Source/web/PageWidgetDelegate.h
|
| index d8dbe36916db557b1babbac20ac1056c5c7b4a6e..04f1d80923cfdc243190d6ce81f832effb3941e4 100644
|
| --- a/third_party/WebKit/Source/web/PageWidgetDelegate.h
|
| +++ b/third_party/WebKit/Source/web/PageWidgetDelegate.h
|
| @@ -49,7 +49,9 @@ class WebTouchEvent;
|
|
|
| class WEB_EXPORT PageWidgetEventHandler {
|
| public:
|
| - virtual void handleMouseMove(LocalFrame& mainFrame, const WebMouseEvent&);
|
| + virtual void handleMouseMove(LocalFrame& mainFrame,
|
| + const WebMouseEvent&,
|
| + const std::vector<const WebInputEvent*>&);
|
| virtual void handleMouseLeave(LocalFrame& mainFrame, const WebMouseEvent&);
|
| virtual void handleMouseDown(LocalFrame& mainFrame, const WebMouseEvent&);
|
| virtual void handleMouseUp(LocalFrame& mainFrame, const WebMouseEvent&);
|
| @@ -58,8 +60,10 @@ class WEB_EXPORT PageWidgetEventHandler {
|
| virtual WebInputEventResult handleKeyEvent(const WebKeyboardEvent&) = 0;
|
| virtual WebInputEventResult handleCharEvent(const WebKeyboardEvent&) = 0;
|
| virtual WebInputEventResult handleGestureEvent(const WebGestureEvent&) = 0;
|
| - virtual WebInputEventResult handleTouchEvent(LocalFrame& mainFrame,
|
| - const WebTouchEvent&);
|
| + virtual WebInputEventResult handleTouchEvent(
|
| + LocalFrame& mainFrame,
|
| + const WebTouchEvent&,
|
| + const std::vector<const WebInputEvent*>&);
|
| virtual ~PageWidgetEventHandler() {}
|
| };
|
|
|
| @@ -81,9 +85,11 @@ class PageWidgetDelegate {
|
| LocalFrame& root);
|
|
|
| // See FIXME in the function body about nullptr |root|.
|
| - static WebInputEventResult handleInputEvent(PageWidgetEventHandler&,
|
| - const WebInputEvent&,
|
| - LocalFrame* root);
|
| + static WebInputEventResult handleInputEvent(
|
| + PageWidgetEventHandler&,
|
| + const WebInputEvent&,
|
| + const std::vector<const WebInputEvent*>&,
|
| + LocalFrame* root);
|
|
|
| private:
|
| PageWidgetDelegate() {}
|
|
|