| Index: android_webview/test/shell/src/org/chromium/android_webview/test/AwTestContainerView.java
|
| diff --git a/android_webview/test/shell/src/org/chromium/android_webview/test/AwTestContainerView.java b/android_webview/test/shell/src/org/chromium/android_webview/test/AwTestContainerView.java
|
| index 0f0a73852bb3636596a372d746ea7658be7605e0..edd2f41e50f8bc07054d878e9b47b4fd3fbc3d15 100644
|
| --- a/android_webview/test/shell/src/org/chromium/android_webview/test/AwTestContainerView.java
|
| +++ b/android_webview/test/shell/src/org/chromium/android_webview/test/AwTestContainerView.java
|
| @@ -345,6 +345,12 @@ public class AwTestContainerView extends FrameLayout {
|
| }
|
|
|
| @Override
|
| + public void onWindowFocusChanged(boolean focused) {
|
| + super.onWindowFocusChanged(focused);
|
| + mAwContents.onWindowFocusChanged(focused);
|
| + }
|
| +
|
| + @Override
|
| public void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect) {
|
| super.onFocusChanged(focused, direction, previouslyFocusedRect);
|
| mAwContents.onFocusChanged(focused, direction, previouslyFocusedRect);
|
|
|