| Index: content/browser/android/content_view_core_impl.cc
|
| diff --git a/content/browser/android/content_view_core_impl.cc b/content/browser/android/content_view_core_impl.cc
|
| index 6dc7a5500de8cb81a23bf0e76374ee9bccc0528c..9537ec6c78de76834aed9cfc6a4c9de22b48fddc 100644
|
| --- a/content/browser/android/content_view_core_impl.cc
|
| +++ b/content/browser/android/content_view_core_impl.cc
|
| @@ -1300,7 +1300,7 @@ void ContentViewCoreImpl::UpdateImeAdapter(long native_ime_adapter,
|
| int composition_start,
|
| int composition_end,
|
| bool show_ime_if_needed,
|
| - bool is_non_ime_change) {
|
| + bool reply_to_request) {
|
| JNIEnv* env = AttachCurrentThread();
|
| ScopedJavaLocalRef<jobject> obj = java_ref_.get(env);
|
| if (obj.is_null())
|
| @@ -1310,8 +1310,7 @@ void ContentViewCoreImpl::UpdateImeAdapter(long native_ime_adapter,
|
| Java_ContentViewCore_updateImeAdapter(
|
| env, obj, native_ime_adapter, text_input_type, text_input_flags,
|
| text_input_mode, jstring_text, selection_start, selection_end,
|
| - composition_start, composition_end, show_ime_if_needed,
|
| - is_non_ime_change);
|
| + composition_start, composition_end, show_ime_if_needed, reply_to_request);
|
| }
|
|
|
| void ContentViewCoreImpl::SetAccessibilityEnabled(
|
|
|