| Index: third_party/WebKit/Source/platform/PlatformWheelEvent.h
|
| diff --git a/third_party/WebKit/Source/platform/PlatformWheelEvent.h b/third_party/WebKit/Source/platform/PlatformWheelEvent.h
|
| index e6c8890e407775558b248bcf5f38568bd6919dc0..66d3eca529b7516438cb51a7c4bf3be3d2be7ee4 100644
|
| --- a/third_party/WebKit/Source/platform/PlatformWheelEvent.h
|
| +++ b/third_party/WebKit/Source/platform/PlatformWheelEvent.h
|
| @@ -69,8 +69,6 @@ public:
|
| #if OS(MACOSX)
|
| , m_phase(PlatformWheelEventPhaseNone)
|
| , m_momentumPhase(PlatformWheelEventPhaseNone)
|
| - , m_canRubberbandLeft(true)
|
| - , m_canRubberbandRight(true)
|
| #endif
|
| {
|
| }
|
| @@ -95,8 +93,6 @@ public:
|
| #if OS(MACOSX)
|
| PlatformWheelEventPhase phase() const { return m_phase; }
|
| PlatformWheelEventPhase momentumPhase() const { return m_momentumPhase; }
|
| - bool canRubberbandLeft() const { return m_canRubberbandLeft; }
|
| - bool canRubberbandRight() const { return m_canRubberbandRight; }
|
| #endif
|
|
|
| protected:
|
| @@ -114,8 +110,6 @@ protected:
|
| #if OS(MACOSX)
|
| PlatformWheelEventPhase m_phase;
|
| PlatformWheelEventPhase m_momentumPhase;
|
| - bool m_canRubberbandLeft;
|
| - bool m_canRubberbandRight;
|
| #endif
|
| };
|
|
|
|
|