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 6ef2535c64630774d818aaf3fd53fd9e8ec67261..c5d4b7205c238d7adc584b476df368f6ab031b0d 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; |