| Index: components/web_contents_delegate_android/android/java/src/org/chromium/components/web_contents_delegate_android/WebContentsDelegateAndroid.java
|
| diff --git a/components/web_contents_delegate_android/android/java/src/org/chromium/components/web_contents_delegate_android/WebContentsDelegateAndroid.java b/components/web_contents_delegate_android/android/java/src/org/chromium/components/web_contents_delegate_android/WebContentsDelegateAndroid.java
|
| index 5e5625373a51454004876fbbc88d6bae6e6ee484..d04e16a6ee07ffdba4be53e8d931c637cdc434cd 100644
|
| --- a/components/web_contents_delegate_android/android/java/src/org/chromium/components/web_contents_delegate_android/WebContentsDelegateAndroid.java
|
| +++ b/components/web_contents_delegate_android/android/java/src/org/chromium/components/web_contents_delegate_android/WebContentsDelegateAndroid.java
|
| @@ -8,6 +8,7 @@ import android.view.KeyEvent;
|
|
|
| import org.chromium.base.CalledByNative;
|
| import org.chromium.base.JNINamespace;
|
| +import org.chromium.content_public.browser.WebContents;
|
|
|
| /**
|
| * Java peer of the native class of the same name.
|
| @@ -110,8 +111,8 @@ public class WebContentsDelegateAndroid {
|
| }
|
|
|
| @CalledByNative
|
| - public void webContentsCreated(long sourceWebContents, long openerRenderFrameId,
|
| - String frameName, String targetUrl, long newWebContents) {
|
| + public void webContentsCreated(WebContents sourceWebContents, long openerRenderFrameId,
|
| + String frameName, String targetUrl, WebContents newWebContents) {
|
| }
|
|
|
| @CalledByNative
|
|
|