| Index: chrome/android/java/src/org/chromium/chrome/browser/profiles/Profile.java
|
| diff --git a/chrome/android/java/src/org/chromium/chrome/browser/profiles/Profile.java b/chrome/android/java/src/org/chromium/chrome/browser/profiles/Profile.java
|
| index 138ebbc73f3bcb4abea6c57480ccb8ad90aa83b5..172f6ede7e5c79c3f226f5da4e8fd976ec7c9a36 100644
|
| --- a/chrome/android/java/src/org/chromium/chrome/browser/profiles/Profile.java
|
| +++ b/chrome/android/java/src/org/chromium/chrome/browser/profiles/Profile.java
|
| @@ -11,9 +11,9 @@ import org.chromium.base.CalledByNative;
|
| */
|
| public class Profile {
|
|
|
| - private int mNativeProfileAndroid;
|
| + private long mNativeProfileAndroid;
|
|
|
| - private Profile(int nativeProfileAndroid) {
|
| + private Profile(long nativeProfileAndroid) {
|
| mNativeProfileAndroid = nativeProfileAndroid;
|
| }
|
|
|
| @@ -22,7 +22,7 @@ public class Profile {
|
| }
|
|
|
| @CalledByNative
|
| - private static Profile create(int nativeProfileAndroid) {
|
| + private static Profile create(long nativeProfileAndroid) {
|
| return new Profile(nativeProfileAndroid);
|
| }
|
|
|
| @@ -32,7 +32,7 @@ public class Profile {
|
| }
|
|
|
| @CalledByNative
|
| - private int getNativePointer() {
|
| + private long getNativePointer() {
|
| return mNativeProfileAndroid;
|
| }
|
|
|
|
|