| Index: android_webview/java/src/org/chromium/android_webview/AwContents.java
|
| ===================================================================
|
| --- android_webview/java/src/org/chromium/android_webview/AwContents.java (revision 219114)
|
| +++ android_webview/java/src/org/chromium/android_webview/AwContents.java (working copy)
|
| @@ -993,6 +993,15 @@
|
| }
|
|
|
| /**
|
| + * @see WebView#requestChildRectangleOnScreen(View, Rect, boolean)
|
| + */
|
| + public boolean requestChildRectangleOnScreen(View child, Rect rect, boolean immediate) {
|
| + return mScrollOffsetManager.requestChildRectangleOnScreen(
|
| + child.getLeft() - child.getScrollX(), child.getTop() - child.getScrollY(),
|
| + rect, immediate);
|
| + }
|
| +
|
| + /**
|
| * @see View.computeScroll()
|
| */
|
| public void computeScroll() {
|
|
|