Chromium Code Reviews| 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 a3ea17f21555475079a8135e4ce571aa3d2d1b80..5e5625373a51454004876fbbc88d6bae6e6ee484 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 |
| @@ -106,6 +106,25 @@ public class WebContentsDelegateAndroid { |
| } |
| @CalledByNative |
| + public void didNavigateToPendingEntry() { |
| + } |
| + |
| + @CalledByNative |
| + public void webContentsCreated(long sourceWebContents, long openerRenderFrameId, |
| + String frameName, String targetUrl, long newWebContents) { |
| + } |
| + |
| + @CalledByNative |
| + public boolean shouldCreateWebContents(String targetUrl) { |
| + return true; |
|
benm (inactive)
2014/11/05 14:44:27
same comment as in the .cc, is true the correct de
|
| + } |
| + |
| + @CalledByNative |
| + public boolean onGoToEntryOffset(int offset) { |
| + return true; |
| + } |
| + |
| + @CalledByNative |
| public void onUpdateUrl(String url) { |
| } |