Skip to content

Commit

Permalink
Fix ime adapter type to satisfy 64-bit
Browse files Browse the repository at this point in the history
BUG=346626, 354405

Review URL: https://codereview.chromium.org/242393002

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@265240 0039d316-1c4b-4281-b951-d872f2087c98
  • Loading branch information
yang.gu@intel.com committed Apr 22, 2014
1 parent f7fc72c commit 427134e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion content/browser/android/content_view_core_impl.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1504,7 +1504,7 @@ ContentViewCoreImpl::GetOriginalUrlForActiveNavigationEntry(JNIEnv* env,
return ConvertUTF8ToJavaString(env, entry->GetOriginalRequestURL().spec());
}

int ContentViewCoreImpl::GetNativeImeAdapter(JNIEnv* env, jobject obj) {
long ContentViewCoreImpl::GetNativeImeAdapter(JNIEnv* env, jobject obj) {
RenderWidgetHostViewAndroid* rwhva = GetRenderWidgetHostViewAndroid();
if (!rwhva)
return 0;
Expand Down
2 changes: 1 addition & 1 deletion content/browser/android/content_view_core_impl.h
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ class ContentViewCoreImpl : public ContentViewCore,
jstring script,
jobject callback,
jboolean start_renderer);
int GetNativeImeAdapter(JNIEnv* env, jobject obj);
long GetNativeImeAdapter(JNIEnv* env, jobject obj);
void SetFocus(JNIEnv* env, jobject obj, jboolean focused);
void ScrollFocusedEditableNodeIntoView(JNIEnv* env, jobject obj);

Expand Down

0 comments on commit 427134e

Please sign in to comment.