diff options
Diffstat (limited to 'core/java/android/view/View.java')
-rw-r--r-- | core/java/android/view/View.java | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/core/java/android/view/View.java b/core/java/android/view/View.java index 3f017b4..b1500eb 100644 --- a/core/java/android/view/View.java +++ b/core/java/android/view/View.java @@ -4761,30 +4761,6 @@ public class View implements Drawable.Callback, KeyEvent.Callback, } /** - * Returns the delta between the actual and last reported window left. - * - * @hide - */ - public int getActualAndReportedWindowLeftDelta() { -// if (mAttachInfo != null) { -// return mAttachInfo.mActualWindowLeft - mAttachInfo.mWindowLeft; -// } - return 0; - } - - /** - * Returns the delta between the actual and last reported window top. - * - * @hide - */ - public int getActualAndReportedWindowTopDelta() { -// if (mAttachInfo != null) { -// return mAttachInfo.mActualWindowTop - mAttachInfo.mWindowTop; -// } - return 0; - } - - /** * Computes whether this view is visible to the user. Such a view is * attached, visible, all its predecessors are visible, it is not clipped * entirely by its predecessors, and has an alpha greater than zero. @@ -17142,20 +17118,6 @@ public class View implements Drawable.Callback, KeyEvent.Callback, int mWindowTop; /** - * Left actual position of this view's window. - * - * TODO: This is a workaround for 6623031. Remove when fixed. - */ - int mActualWindowLeft; - - /** - * Actual top position of this view's window. - * - * TODO: This is a workaround for 6623031. Remove when fixed. - */ - int mActualWindowTop; - - /** * Indicates whether views need to use 32-bit drawing caches */ boolean mUse32BitDrawingCache; |