| Index: third_party/WebKit/Source/core/events/GestureEvent.h
|
| diff --git a/third_party/WebKit/Source/core/events/GestureEvent.h b/third_party/WebKit/Source/core/events/GestureEvent.h
|
| index 0f8c06c458f8629668e27e61854557219a39b546..46ea2082537b654b52533ac6128cf8625a9905a4 100644
|
| --- a/third_party/WebKit/Source/core/events/GestureEvent.h
|
| +++ b/third_party/WebKit/Source/core/events/GestureEvent.h
|
| @@ -57,19 +57,22 @@ public:
|
|
|
| GestureSource source() const { return m_source; }
|
| int resendingPluginId() const { return m_resendingPluginId; }
|
| + bool synthetic() const { return m_synthetic; }
|
| + ScrollGranularity deltaUnits() const { return m_deltaUnits; }
|
|
|
| DECLARE_VIRTUAL_TRACE();
|
|
|
| private:
|
| GestureEvent();
|
| - GestureEvent(const AtomicString& type, PassRefPtrWillBeRawPtr<AbstractView>, int screenX, int screenY, int clientX, int clientY, PlatformEvent::Modifiers, float deltaX, float deltaY, float velocityX, float velocityY, bool inertial, double platformTimeStamp, int resendingPluginId, GestureSource);
|
| + GestureEvent(const AtomicString& type, PassRefPtrWillBeRawPtr<AbstractView>, int screenX, int screenY, int clientX, int clientY, PlatformEvent::Modifiers, float deltaX, float deltaY, float velocityX, float velocityY, bool inertial, bool synthetic, ScrollGranularity deltaUnits, double platformTimeStamp, int resendingPluginId, GestureSource);
|
|
|
| float m_deltaX;
|
| float m_deltaY;
|
| float m_velocityX;
|
| float m_velocityY;
|
| bool m_inertial;
|
| -
|
| + bool m_synthetic;
|
| + ScrollGranularity m_deltaUnits;
|
| GestureSource m_source;
|
| int m_resendingPluginId;
|
| };
|
|
|