author | Kartikaya Gupta <kgupta@mozilla.com> |
Tue, 17 Apr 2012 11:34:13 -0400 | |
changeset 91865 | 15845084c84dc6c1295bc52241d0595990537f2f |
parent 91864 | fb2fd2b621ba207d044c1da377c89569a79e9008 |
child 91866 | 8ddeb95d76503a0275cfcc48d11b198aa441a2d9 |
push id | 22480 |
push user | emorley@mozilla.com |
push date | Wed, 18 Apr 2012 00:48:48 +0000 |
treeherder | mozilla-central@93dfd98900ad [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | cpeterson |
bugs | 741693 |
milestone | 14.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
--- a/mobile/android/base/ui/Axis.java +++ b/mobile/android/base/ui/Axis.java @@ -134,17 +134,17 @@ abstract class Axis { } private final SubdocumentScrollHelper mSubscroller; private float mFirstTouchPos; /* Position of the first touch event on the current drag. */ private float mTouchPos; /* Position of the most recent touch event on the current drag. */ private float mLastTouchPos; /* Position of the touch event before touchPos. */ private float mVelocity; /* Velocity in this direction; pixels per animation frame. */ - public boolean mScrollingDisabled; /* Whether movement on this axis is locked. */ + private boolean mScrollingDisabled; /* Whether movement on this axis is locked. */ private boolean mDisableSnap; /* Whether overscroll snapping is disabled. */ private float mDisplacement; private FlingStates mFlingState; /* The fling state we're in on this axis. */ protected abstract float getOrigin(); protected abstract float getViewportLength(); protected abstract float getPageLength();