| Index: third_party/WebKit/Source/platform/PlatformTouchEvent.h
|
| diff --git a/third_party/WebKit/Source/platform/PlatformTouchEvent.h b/third_party/WebKit/Source/platform/PlatformTouchEvent.h
|
| index 97afb62f8860ec3892588efb50d7c46644915a43..88005d12de29deab0e78aeb6a3094b792bf429fd 100644
|
| --- a/third_party/WebKit/Source/platform/PlatformTouchEvent.h
|
| +++ b/third_party/WebKit/Source/platform/PlatformTouchEvent.h
|
| @@ -32,6 +32,7 @@ public:
|
| : PlatformEvent(PlatformEvent::TouchStart)
|
| , m_dispatchType(PlatformEvent::Blocking)
|
| , m_causesScrollingIfUncanceled(false)
|
| + , m_shouldForceBePassive(false)
|
| {
|
| }
|
|
|
| @@ -40,11 +41,13 @@ public:
|
| DispatchType dispatchType() const { return m_dispatchType; }
|
| bool cancelable() const { return m_dispatchType == PlatformEvent::Blocking; }
|
| bool causesScrollingIfUncanceled() const { return m_causesScrollingIfUncanceled; }
|
| + bool shouldForceBePassive() const { return m_shouldForceBePassive; }
|
|
|
| protected:
|
| Vector<PlatformTouchPoint> m_touchPoints;
|
| DispatchType m_dispatchType;
|
| bool m_causesScrollingIfUncanceled;
|
| + bool m_shouldForceBePassive;
|
| };
|
|
|
| } // namespace blink
|
|
|