diff options
Diffstat (limited to 'chrome/browser/profiles/profile_android.cc')
-rw-r--r-- | chrome/browser/profiles/profile_android.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/profiles/profile_android.cc b/chrome/browser/profiles/profile_android.cc index 5f0eda1..0496675 100644 --- a/chrome/browser/profiles/profile_android.cc +++ b/chrome/browser/profiles/profile_android.cc @@ -72,7 +72,7 @@ ProfileAndroid::ProfileAndroid(Profile* profile) : profile_(profile) { JNIEnv* env = AttachCurrentThread(); base::android::ScopedJavaLocalRef<jobject> jprofile = - Java_Profile_create(env, reinterpret_cast<int>(this)); + Java_Profile_create(env, reinterpret_cast<intptr_t>(this)); obj_.Reset(env, jprofile.obj()); } |