| Index: android_webview/java/src/org/chromium/android_webview/AwContents.java
|
| diff --git a/android_webview/java/src/org/chromium/android_webview/AwContents.java b/android_webview/java/src/org/chromium/android_webview/AwContents.java
|
| index 8d0d278c0f250dc7a8492da604d3ef823ecbe74f..4667061aa7003b87b83ac0ace0fd2ffe28398099 100644
|
| --- a/android_webview/java/src/org/chromium/android_webview/AwContents.java
|
| +++ b/android_webview/java/src/org/chromium/android_webview/AwContents.java
|
| @@ -1831,6 +1831,11 @@ public class AwContents implements SmartClipProvider,
|
| return ports;
|
| }
|
|
|
| + public boolean hasPageScriptAccessedInitialDocument() {
|
| + if (isDestroyed()) return false;
|
| + return mWebContents.hasPageScriptAccessedInitialDocument();
|
| + }
|
| +
|
| //--------------------------------------------------------------------------------------------
|
| // View and ViewGroup method implementations
|
| //--------------------------------------------------------------------------------------------
|
|
|