| Index: third_party/WebKit/Source/platform/PlatformTouchPoint.h
|
| diff --git a/third_party/WebKit/Source/platform/PlatformTouchPoint.h b/third_party/WebKit/Source/platform/PlatformTouchPoint.h
|
| index b9071f1534b93d731d72dfe5655f0edb45c42e19..d9d37f44cf921a188fe106517efe747eaa999910 100644
|
| --- a/third_party/WebKit/Source/platform/PlatformTouchPoint.h
|
| +++ b/third_party/WebKit/Source/platform/PlatformTouchPoint.h
|
| @@ -27,7 +27,7 @@ namespace blink {
|
|
|
| class PlatformTouchPoint {
|
| public:
|
| - enum State {
|
| + enum TouchState {
|
| TouchReleased,
|
| TouchPressed,
|
| TouchMoved,
|
| @@ -44,7 +44,7 @@ public:
|
|
|
| const WebPointerProperties& pointerProperties() const { return m_pointerProperties; }
|
| int id() const { return pointerProperties().id; }
|
| - State state() const { return m_state; }
|
| + TouchState state() const { return m_state; }
|
| FloatPoint screenPos() const { return m_screenPos; }
|
| FloatPoint pos() const { return m_pos; }
|
| FloatSize radius() const { return m_radius; }
|
| @@ -54,7 +54,7 @@ public:
|
| protected:
|
| WebPointerProperties m_pointerProperties;
|
|
|
| - State m_state;
|
| + TouchState m_state;
|
| FloatPoint m_screenPos;
|
| FloatPoint m_pos;
|
| FloatSize m_radius;
|
|
|