| Index: chrome/android/testshell/testshell_tab.cc
|
| diff --git a/chrome/android/testshell/testshell_tab.cc b/chrome/android/testshell/testshell_tab.cc
|
| index 6e94ea524fc7aa209c48c4a65e029cc31fe87980..168875d1456184e2b80cc2ae0e9185bc388ee97d 100644
|
| --- a/chrome/android/testshell/testshell_tab.cc
|
| +++ b/chrome/android/testshell/testshell_tab.cc
|
| @@ -95,6 +95,6 @@ ScopedJavaLocalRef<jstring> TestShellTab::FixupUrl(JNIEnv* env,
|
| return ConvertUTF8ToJavaString(env, fixed_spec);
|
| }
|
|
|
| -static jint Init(JNIEnv* env, jobject obj) {
|
| - return reinterpret_cast<jint>(new TestShellTab(env, obj));
|
| +static jlong Init(JNIEnv* env, jobject obj) {
|
| + return reinterpret_cast<intptr_t>(new TestShellTab(env, obj));
|
| }
|
|
|