Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / platform / PlatformTouchEvent.h
index e7c9e61..d0ec1a3 100644 (file)
@@ -30,13 +30,17 @@ class PlatformTouchEvent : public PlatformEvent {
 public:
     PlatformTouchEvent()
         : PlatformEvent(PlatformEvent::TouchStart)
+        , m_cancelable(true)
     {
     }
 
     const Vector<PlatformTouchPoint>& touchPoints() const { return m_touchPoints; }
 
+    bool cancelable() const { return m_cancelable; }
+
 protected:
     Vector<PlatformTouchPoint> m_touchPoints;
+    bool m_cancelable;
 };
 
 }