| 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 48758aa420dfac79e9ddeb0e5be17c1875f9a675..e8a400cfea88bf81ae6ae83e5ab2752f2928d2ea 100644
|
| --- a/android_webview/java/src/org/chromium/android_webview/AwContents.java
|
| +++ b/android_webview/java/src/org/chromium/android_webview/AwContents.java
|
| @@ -830,6 +830,13 @@ public class AwContents {
|
| mContainerView.invalidate();
|
| }
|
|
|
| + @CalledByNative
|
| + private AwWebContentsViewDelegate createAwWebContentsViewDelegate(
|
| + int nativeAwWebContentsViewDelegate) {
|
| + return new AwWebContentsViewDelegate(nativeAwWebContentsViewDelegate,
|
| + mContainerView);
|
| + }
|
| +
|
| // -------------------------------------------------------------------------------------------
|
| // Helper methods
|
| // -------------------------------------------------------------------------------------------
|
| @@ -945,5 +952,5 @@ public class AwContents {
|
| private native boolean nativeRestoreFromOpaqueState(int nativeAwContents, byte[] state);
|
|
|
| private native int nativeReleasePopupWebContents(int nativeAwContents);
|
| - private native void nativeSetWebContents(int nativeAwContents, int nativeNewWebContents);
|
| + private native void nativeSetWebContents(int nativeAwContents, int nativeNewWebContents);
|
| }
|
|
|