| Index: content/public/android/java/src/org/chromium/content/browser/webcontents/WebContentsImpl.java
|
| diff --git a/content/public/android/java/src/org/chromium/content/browser/webcontents/WebContentsImpl.java b/content/public/android/java/src/org/chromium/content/browser/webcontents/WebContentsImpl.java
|
| index 049e5af8d0ea21e9ed7813af43f522d757c165e0..d6cb714f86af849bfea8bf5593f41e69eedc11f4 100644
|
| --- a/content/public/android/java/src/org/chromium/content/browser/webcontents/WebContentsImpl.java
|
| +++ b/content/public/android/java/src/org/chromium/content/browser/webcontents/WebContentsImpl.java
|
| @@ -166,11 +166,6 @@
|
| }
|
|
|
| @Override
|
| - public String getLastCommittedUrl() {
|
| - return nativeGetLastCommittedURL(mNativeWebContentsAndroid);
|
| - }
|
| -
|
| - @Override
|
| public boolean isIncognito() {
|
| return nativeIsIncognito(mNativeWebContentsAndroid);
|
| }
|
| @@ -299,11 +294,6 @@
|
| @Override
|
| public void addMessageToDevToolsConsole(int level, String message) {
|
| nativeAddMessageToDevToolsConsole(mNativeWebContentsAndroid, level, message);
|
| - }
|
| -
|
| - @Override
|
| - public boolean hasAccessedInitialDocument() {
|
| - return nativeHasAccessedInitialDocument(mNativeWebContentsAndroid);
|
| }
|
|
|
| @CalledByNative
|
| @@ -338,7 +328,6 @@
|
| private native void nativeScrollFocusedEditableNodeIntoView(long nativeWebContentsAndroid);
|
| private native void nativeSelectWordAroundCaret(long nativeWebContentsAndroid);
|
| private native String nativeGetURL(long nativeWebContentsAndroid);
|
| - private native String nativeGetLastCommittedURL(long nativeWebContentsAndroid);
|
| private native boolean nativeIsIncognito(long nativeWebContentsAndroid);
|
| private native void nativeResumeResponseDeferredAtStart(long nativeWebContentsAndroid);
|
| private native void nativeSetHasPendingNavigationTransitionForTesting(
|
| @@ -358,6 +347,4 @@
|
| String script, JavaScriptCallback callback);
|
| private native void nativeAddMessageToDevToolsConsole(
|
| long nativeWebContentsAndroid, int level, String message);
|
| - private native boolean nativeHasAccessedInitialDocument(
|
| - long nativeWebContentsAndroid);
|
| }
|
|
|