| Index: Source/platform/PlatformTouchEvent.h
|
| diff --git a/Source/platform/PlatformTouchEvent.h b/Source/platform/PlatformTouchEvent.h
|
| index f5f0281558199e76d7b6035790ad96253c552043..be75aa6595a71e95f2eb069d8510c3f78fddcbda 100644
|
| --- a/Source/platform/PlatformTouchEvent.h
|
| +++ b/Source/platform/PlatformTouchEvent.h
|
| @@ -37,10 +37,12 @@ public:
|
| const Vector<PlatformTouchPoint>& touchPoints() const { return m_touchPoints; }
|
|
|
| bool cancelable() const { return m_cancelable; }
|
| + bool causesScrollingIfUncanceled() const { return m_causesScrollingIfUncanceled; }
|
|
|
| protected:
|
| Vector<PlatformTouchPoint> m_touchPoints;
|
| bool m_cancelable;
|
| + bool m_causesScrollingIfUncanceled;
|
| };
|
|
|
| }
|
|
|