Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0171fbf1 authored by Aaron Whyte's avatar Aaron Whyte Committed by Android (Google) Code Review
Browse files

Merge "Split scroll factor into a 2d float."

parents 09687fb3 e9956c5c
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -45996,6 +45996,7 @@ package android.view {
    method public static deprecated int getEdgeSlop();
    method public static deprecated int getFadingEdgeLength();
    method public static deprecated long getGlobalActionKeyTimeout();
    method public float getScaledHorizontalScrollFactor();
    method public static int getJumpTapTimeout();
    method public static int getKeyRepeatDelay();
    method public static int getKeyRepeatTimeout();
@@ -46014,7 +46015,6 @@ package android.view {
    method public int getScaledOverscrollDistance();
    method public int getScaledPagingTouchSlop();
    method public int getScaledScrollBarSize();
    method public int getScaledScrollFactor();
    method public int getScaledTouchSlop();
    method public int getScaledWindowTouchSlop();
    method public static int getScrollBarFadeDuration();
@@ -46023,6 +46023,7 @@ package android.view {
    method public static float getScrollFriction();
    method public static int getTapTimeout();
    method public static deprecated int getTouchSlop();
    method public float getScaledVerticalScrollFactor();
    method public static deprecated int getWindowTouchSlop();
    method public static long getZoomControlsTimeout();
    method public boolean hasPermanentMenuKey();
+4 −0
Original line number Diff line number Diff line
@@ -374,6 +374,10 @@ package android.view {
    method protected void initializeScrollbars(android.content.res.TypedArray);
  }

  public class ViewConfiguration {
    method public int getScaledScrollFactor();
  }

  public static class WindowManager.LayoutParams extends android.view.ViewGroup.LayoutParams implements android.os.Parcelable {
    field public static final int TYPE_KEYGUARD = 2004; // 0x7d4
  }
+2 −1
Original line number Diff line number Diff line
@@ -49451,6 +49451,7 @@ package android.view {
    method public static deprecated int getEdgeSlop();
    method public static deprecated int getFadingEdgeLength();
    method public static deprecated long getGlobalActionKeyTimeout();
    method public float getScaledHorizontalScrollFactor();
    method public static int getJumpTapTimeout();
    method public static int getKeyRepeatDelay();
    method public static int getKeyRepeatTimeout();
@@ -49469,7 +49470,6 @@ package android.view {
    method public int getScaledOverscrollDistance();
    method public int getScaledPagingTouchSlop();
    method public int getScaledScrollBarSize();
    method public int getScaledScrollFactor();
    method public int getScaledTouchSlop();
    method public int getScaledWindowTouchSlop();
    method public static int getScrollBarFadeDuration();
@@ -49478,6 +49478,7 @@ package android.view {
    method public static float getScrollFriction();
    method public static int getTapTimeout();
    method public static deprecated int getTouchSlop();
    method public float getScaledVerticalScrollFactor();
    method public static deprecated int getWindowTouchSlop();
    method public static long getZoomControlsTimeout();
    method public boolean hasPermanentMenuKey();
+4 −0
Original line number Diff line number Diff line
@@ -368,6 +368,10 @@ package android.view {
    method protected void initializeScrollbars(android.content.res.TypedArray);
  }

  public class ViewConfiguration {
    method public int getScaledScrollFactor();
  }

  public static class WindowManager.LayoutParams extends android.view.ViewGroup.LayoutParams implements android.os.Parcelable {
    field public static final int TYPE_KEYGUARD = 2004; // 0x7d4
  }
+2 −1
Original line number Diff line number Diff line
@@ -46373,6 +46373,7 @@ package android.view {
    method public static deprecated int getEdgeSlop();
    method public static deprecated int getFadingEdgeLength();
    method public static deprecated long getGlobalActionKeyTimeout();
    method public float getScaledHorizontalScrollFactor();
    method public static int getHoverTooltipHideShortTimeout();
    method public static int getHoverTooltipHideTimeout();
    method public static int getHoverTooltipShowTimeout();
@@ -46395,7 +46396,6 @@ package android.view {
    method public int getScaledOverscrollDistance();
    method public int getScaledPagingTouchSlop();
    method public int getScaledScrollBarSize();
    method public int getScaledScrollFactor();
    method public int getScaledTouchSlop();
    method public int getScaledWindowTouchSlop();
    method public static int getScrollBarFadeDuration();
@@ -46404,6 +46404,7 @@ package android.view {
    method public static float getScrollFriction();
    method public static int getTapTimeout();
    method public static deprecated int getTouchSlop();
    method public float getScaledVerticalScrollFactor();
    method public static deprecated int getWindowTouchSlop();
    method public static long getZoomControlsTimeout();
    method public boolean hasPermanentMenuKey();
Loading