| Index: content/public/android/java/src/org/chromium/content/browser/ContentView.java
|
| diff --git a/content/public/android/java/src/org/chromium/content/browser/ContentView.java b/content/public/android/java/src/org/chromium/content/browser/ContentView.java
|
| index d479be66eb9d8a0d0a55389797d905861e1ed8a9..d1c8d0ec259f78c0fed6c13516099188bbff322a 100644
|
| --- a/content/public/android/java/src/org/chromium/content/browser/ContentView.java
|
| +++ b/content/public/android/java/src/org/chromium/content/browser/ContentView.java
|
| @@ -29,8 +29,6 @@ public class ContentView extends FrameLayout
|
|
|
| protected final ContentViewCore mContentViewCore;
|
|
|
| - private final int[] mLocationInWindow = new int[2];
|
| -
|
| /**
|
| * Creates an instance of a ContentView.
|
| * @param context The Context the view is running in, through which it can
|
| @@ -81,15 +79,6 @@ public class ContentView extends FrameLayout
|
| }
|
|
|
| @Override
|
| - protected void onLayout(boolean changed, int left, int top, int right, int bottom) {
|
| - super.onLayout(changed, left, top, right, bottom);
|
| - if (changed) {
|
| - getLocationInWindow(mLocationInWindow);
|
| - mContentViewCore.onLocationInWindowChanged(mLocationInWindow[0], mLocationInWindow[1]);
|
| - }
|
| - }
|
| -
|
| - @Override
|
| public InputConnection onCreateInputConnection(EditorInfo outAttrs) {
|
| return mContentViewCore.onCreateInputConnection(outAttrs);
|
| }
|
|
|