Loading core/java/android/window/BackEvent.java +16 −0 Original line number Diff line number Diff line Loading @@ -155,6 +155,22 @@ public final class BackEvent { return mFrameTime; } @Override public boolean equals(Object other) { if (this == other) { return true; } if (!(other instanceof BackEvent)) { return false; } final BackEvent that = (BackEvent) other; return mTouchX == that.mTouchX && mTouchY == that.mTouchY && mProgress == that.mProgress && mSwipeEdge == that.mSwipeEdge && mFrameTime == that.mFrameTime; } @Override public String toString() { return "BackEvent{" Loading Loading
core/java/android/window/BackEvent.java +16 −0 Original line number Diff line number Diff line Loading @@ -155,6 +155,22 @@ public final class BackEvent { return mFrameTime; } @Override public boolean equals(Object other) { if (this == other) { return true; } if (!(other instanceof BackEvent)) { return false; } final BackEvent that = (BackEvent) other; return mTouchX == that.mTouchX && mTouchY == that.mTouchY && mProgress == that.mProgress && mSwipeEdge == that.mSwipeEdge && mFrameTime == that.mFrameTime; } @Override public String toString() { return "BackEvent{" Loading