| Index: content/public/android/java/src/org/chromium/content/browser/InterstitialPageDelegateAndroid.java
|
| diff --git a/content/public/android/java/src/org/chromium/content/browser/InterstitialPageDelegateAndroid.java b/content/public/android/java/src/org/chromium/content/browser/InterstitialPageDelegateAndroid.java
|
| index 5ccb6ea5074e8305e620f9798bd716e7131d5f4a..06c6846afb6a6ea2a012209c204ff6a6c7e77566 100644
|
| --- a/content/public/android/java/src/org/chromium/content/browser/InterstitialPageDelegateAndroid.java
|
| +++ b/content/public/android/java/src/org/chromium/content/browser/InterstitialPageDelegateAndroid.java
|
| @@ -13,7 +13,7 @@ import org.chromium.base.JNINamespace;
|
| @JNINamespace("content")
|
| public class InterstitialPageDelegateAndroid {
|
|
|
| - private int mNativePtr;
|
| + private long mNativePtr;
|
|
|
| /**
|
| * Constructs an interstitial with the given HTML content.
|
| @@ -27,7 +27,7 @@ public class InterstitialPageDelegateAndroid {
|
| /**
|
| * @return The pointer to the underlying native counterpart.
|
| */
|
| - public int getNative() {
|
| + public long getNative() {
|
| return mNativePtr;
|
| }
|
|
|
| @@ -73,7 +73,7 @@ public class InterstitialPageDelegateAndroid {
|
| if (mNativePtr != 0) nativeDontProceed(mNativePtr);
|
| }
|
|
|
| - private native int nativeInit(String htmlContent);
|
| - private native void nativeProceed(int nativeInterstitialPageDelegateAndroid);
|
| - private native void nativeDontProceed(int nativeInterstitialPageDelegateAndroid);
|
| + private native long nativeInit(String htmlContent);
|
| + private native void nativeProceed(long nativeInterstitialPageDelegateAndroid);
|
| + private native void nativeDontProceed(long nativeInterstitialPageDelegateAndroid);
|
| }
|
|
|