| Index: chrome/browser/sync/profile_sync_service_android.cc
|
| diff --git a/chrome/browser/sync/profile_sync_service_android.cc b/chrome/browser/sync/profile_sync_service_android.cc
|
| index 0ab68f219d98a94d633d419cf8401c8a1ac02554..b1f82f7ffad61515dd51def306b107f59dcf46c3 100644
|
| --- a/chrome/browser/sync/profile_sync_service_android.cc
|
| +++ b/chrome/browser/sync/profile_sync_service_android.cc
|
| @@ -501,11 +501,11 @@ ProfileSyncServiceAndroid*
|
| AttachCurrentThread(), base::android::GetApplicationContext()));
|
| }
|
|
|
| -static int Init(JNIEnv* env, jobject obj) {
|
| +static jlong Init(JNIEnv* env, jobject obj) {
|
| ProfileSyncServiceAndroid* profile_sync_service_android =
|
| new ProfileSyncServiceAndroid(env, obj);
|
| profile_sync_service_android->Init();
|
| - return reinterpret_cast<jint>(profile_sync_service_android);
|
| + return reinterpret_cast<intptr_t>(profile_sync_service_android);
|
| }
|
|
|
| // static
|
|
|