Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1737)

Unified Diff: Source/platform/PlatformWheelEvent.h

Issue 415773008: Remove dead code backing WheelEvent.webkitDirectionInvertedFromDevice (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/events/WheelEvent.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/PlatformWheelEvent.h
diff --git a/Source/platform/PlatformWheelEvent.h b/Source/platform/PlatformWheelEvent.h
index d4c4bad9e80623ad1fdfd9f2e733879ebb0b2c5f..588013c68552aa4e5edb389d66ce7d6c141a2ddf 100644
--- a/Source/platform/PlatformWheelEvent.h
+++ b/Source/platform/PlatformWheelEvent.h
@@ -65,7 +65,6 @@ public:
, m_wheelTicksX(0)
, m_wheelTicksY(0)
, m_granularity(ScrollByPixelWheelEvent)
- , m_directionInvertedFromDevice(false)
, m_hasPreciseScrollingDeltas(false)
#if OS(MACOSX)
, m_phase(PlatformWheelEventPhaseNone)
@@ -88,7 +87,6 @@ public:
, m_wheelTicksX(wheelTicksX)
, m_wheelTicksY(wheelTicksY)
, m_granularity(granularity)
- , m_directionInvertedFromDevice(false)
, m_hasPreciseScrollingDeltas(false)
#if OS(MACOSX)
, m_phase(PlatformWheelEventPhaseNone)
@@ -113,8 +111,6 @@ public:
PlatformWheelEventGranularity granularity() const { return m_granularity; }
- bool directionInvertedFromDevice() const { return m_directionInvertedFromDevice; }
-
bool hasPreciseScrollingDeltas() const { return m_hasPreciseScrollingDeltas; }
void setHasPreciseScrollingDeltas(bool b) { m_hasPreciseScrollingDeltas = b; }
#if OS(MACOSX)
@@ -138,7 +134,6 @@ protected:
float m_wheelTicksX;
float m_wheelTicksY;
PlatformWheelEventGranularity m_granularity;
- bool m_directionInvertedFromDevice;
bool m_hasPreciseScrollingDeltas;
#if OS(MACOSX)
PlatformWheelEventPhase m_phase;
« no previous file with comments | « Source/core/events/WheelEvent.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698