| Index: content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java
|
| diff --git a/content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java b/content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java
|
| index 040baab5e84f6ec863dd8555b006dddc72fe21d5..4242f1de6b23b0b93958004c42401911f1c6e258 100644
|
| --- a/content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java
|
| +++ b/content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java
|
| @@ -782,6 +782,20 @@ public class ContentViewCore implements MotionEventDelegate {
|
| }
|
|
|
| /**
|
| + * Cancel the pending reload.
|
| + */
|
| + public void cancelPendingReload() {
|
| + if (mNativeContentViewCore != 0) nativeCancelPendingReload(mNativeContentViewCore);
|
| + }
|
| +
|
| + /**
|
| + * Continue the pending reload.
|
| + */
|
| + public void continuePendingReload() {
|
| + if (mNativeContentViewCore != 0) nativeContinuePendingReload(mNativeContentViewCore);
|
| + }
|
| +
|
| + /**
|
| * Clears the ContentViewCore's page history in both the backwards and
|
| * forwards directions.
|
| */
|
| @@ -2162,6 +2176,10 @@ public class ContentViewCore implements MotionEventDelegate {
|
|
|
| private native void nativeReload(int nativeContentViewCoreImpl);
|
|
|
| + private native void nativeCancelPendingReload(int nativeContentViewCoreImpl);
|
| +
|
| + private native void nativeContinuePendingReload(int nativeContentViewCoreImpl);
|
| +
|
| private native void nativeSelectPopupMenuItems(int nativeContentViewCoreImpl, int[] indices);
|
|
|
| private native void nativeScrollFocusedEditableNodeIntoView(int nativeContentViewCoreImpl);
|
|
|