| Index: content/public/android/java/src/org/chromium/content/browser/WebContentsObserverAndroid.java
|
| diff --git a/content/public/android/java/src/org/chromium/content/browser/WebContentsObserverAndroid.java b/content/public/android/java/src/org/chromium/content/browser/WebContentsObserverAndroid.java
|
| index 465b86290e146174fb7fb1bf983ba67caad85686..025428e63397803e4d45480a4a36d0450eb2cf0f 100644
|
| --- a/content/public/android/java/src/org/chromium/content/browser/WebContentsObserverAndroid.java
|
| +++ b/content/public/android/java/src/org/chromium/content/browser/WebContentsObserverAndroid.java
|
| @@ -13,7 +13,7 @@ import org.chromium.base.JNINamespace;
|
| */
|
| @JNINamespace("content")
|
| public abstract class WebContentsObserverAndroid {
|
| - private int mNativeWebContentsObserverAndroid;
|
| + private long mNativeWebContentsObserverAndroid;
|
|
|
| public WebContentsObserverAndroid(ContentViewCore contentViewCore) {
|
| mNativeWebContentsObserverAndroid = nativeInit(contentViewCore.getNativeContentViewCore());
|
| @@ -155,6 +155,6 @@ public abstract class WebContentsObserverAndroid {
|
| }
|
| }
|
|
|
| - private native int nativeInit(int contentViewCorePtr);
|
| - private native void nativeDestroy(int nativeWebContentsObserverAndroid);
|
| + private native long nativeInit(long contentViewCorePtr);
|
| + private native void nativeDestroy(long nativeWebContentsObserverAndroid);
|
| }
|
|
|