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..0f51d5793ba81c192aeba493ac712e499c33c4c8 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,11 @@ public class AwContents { |
mContainerView.invalidate(); |
} |
+ @CalledByNative |
+ private AwWebContentsViewDelegate createAwWebContentsViewDelegate() { |
+ return new AwWebContentsViewDelegate(mContainerView); |
+ } |
+ |
// ------------------------------------------------------------------------------------------- |
// Helper methods |
// ------------------------------------------------------------------------------------------- |
@@ -945,5 +950,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); |
} |