| Index: content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java
|
| diff --git a/content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java b/content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java
|
| index d51e32f303eb6f4bf2248e4e6e07fc28bd275303..6e21f96e36b361c53ac9cb54430bbd61455cce32 100644
|
| --- a/content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java
|
| +++ b/content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java
|
| @@ -1899,7 +1899,7 @@ public class ContentViewCore implements AccessibilityStateChangeListener, Displa
|
| private void updateImeAdapter(long nativeImeAdapterAndroid, int textInputType,
|
| int textInputFlags, int textInputMode, String text, int selectionStart,
|
| int selectionEnd, int compositionStart, int compositionEnd, boolean showImeIfNeeded,
|
| - boolean isNonImeChange) {
|
| + boolean replyToRequest) {
|
| try {
|
| TraceEvent.begin("ContentViewCore.updateImeAdapter");
|
| boolean focusedNodeEditable = (textInputType != TextInputType.NONE);
|
| @@ -1909,7 +1909,7 @@ public class ContentViewCore implements AccessibilityStateChangeListener, Displa
|
| mImeAdapter.updateKeyboardVisibility(
|
| textInputType, textInputFlags, textInputMode, showImeIfNeeded);
|
| mImeAdapter.updateState(text, selectionStart, selectionEnd, compositionStart,
|
| - compositionEnd, isNonImeChange);
|
| + compositionEnd, replyToRequest);
|
|
|
| boolean editableToggled = (focusedNodeEditable != isFocusedNodeEditable());
|
| mSelectionPopupController.updateSelectionState(focusedNodeEditable,
|
|
|