| Index: chrome/browser/android/omnibox/omnibox_prerender.cc
|
| diff --git a/chrome/browser/android/omnibox/omnibox_prerender.cc b/chrome/browser/android/omnibox/omnibox_prerender.cc
|
| index 216a719e210785515e3ace710783f85de5a916b6..ac064650bb7e9ea7d7a776f6fea4374e54250659 100644
|
| --- a/chrome/browser/android/omnibox/omnibox_prerender.cc
|
| +++ b/chrome/browser/android/omnibox/omnibox_prerender.cc
|
| @@ -27,9 +27,9 @@ OmniboxPrerender::OmniboxPrerender(JNIEnv* env, jobject obj)
|
| OmniboxPrerender::~OmniboxPrerender() {
|
| }
|
|
|
| -static jint Init(JNIEnv* env, jobject obj) {
|
| +static jlong Init(JNIEnv* env, jobject obj) {
|
| OmniboxPrerender* omnibox = new OmniboxPrerender(env, obj);
|
| - return reinterpret_cast<jint>(omnibox);
|
| + return reinterpret_cast<intptr_t>(omnibox);
|
| }
|
|
|
| bool RegisterOmniboxPrerender(JNIEnv* env) {
|
|
|