| Index: Source/platform/PlatformTouchEvent.h
|
| diff --git a/Source/platform/PlatformTouchEvent.h b/Source/platform/PlatformTouchEvent.h
|
| index e7c9e6130145475d3abdcbc46f533119b1eedb81..d0ec1a3326ba09ff05e27c5c9ffa13747b7eec42 100644
|
| --- a/Source/platform/PlatformTouchEvent.h
|
| +++ b/Source/platform/PlatformTouchEvent.h
|
| @@ -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;
|
| };
|
|
|
| }
|
|
|