| Index: third_party/WebKit/public/platform/WebLayer.h
|
| diff --git a/third_party/WebKit/public/platform/WebLayer.h b/third_party/WebKit/public/platform/WebLayer.h
|
| index 617c8691c4132aab6d64b6c3a32cf1828bbc27c1..698b0c1714ac7c7dfe222f51ae413b59a5d794ee 100644
|
| --- a/third_party/WebKit/public/platform/WebLayer.h
|
| +++ b/third_party/WebKit/public/platform/WebLayer.h
|
| @@ -31,6 +31,7 @@
|
| #include "WebCommon.h"
|
| #include "WebCompositorAnimation.h"
|
| #include "WebDoublePoint.h"
|
| +#include "WebEventListenerProperties.h"
|
| #include "WebFloatPoint3D.h"
|
| #include "WebPoint.h"
|
| #include "WebRect.h"
|
| @@ -201,8 +202,11 @@ public:
|
| virtual bool userScrollableHorizontal() const = 0;
|
| virtual bool userScrollableVertical() const = 0;
|
|
|
| - virtual void setHaveWheelEventHandlers(bool) = 0;
|
| - virtual bool haveWheelEventHandlers() const = 0;
|
| + virtual void setTouchEventListenerProperties(WebEventListenerProperties) = 0;
|
| + virtual WebEventListenerProperties touchEventListenerProperties() const = 0;
|
| +
|
| + virtual void setWheelEventListenerProperties(WebEventListenerProperties) = 0;
|
| + virtual WebEventListenerProperties wheelEventListenerProperties() const = 0;
|
|
|
| virtual void setHaveScrollEventHandlers(bool) = 0;
|
| virtual bool haveScrollEventHandlers() const = 0;
|
|
|