| 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 d28f3cafecefef49f46f739920630bbae465807b..24fb5ddeb4717a446974ea18439ed82b48e8ac33 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
|
| @@ -1998,8 +1998,8 @@ public class ContentViewCore implements AccessibilityStateChangeListener, Displa
|
|
|
| @CalledByNative
|
| private void updateImeAdapter(long nativeImeAdapterAndroid, int textInputType,
|
| - int textInputFlags, String text, int selectionStart, int selectionEnd,
|
| - int compositionStart, int compositionEnd, boolean showImeIfNeeded,
|
| + int textInputFlags, int textInputMode, String text, int selectionStart,
|
| + int selectionEnd, int compositionStart, int compositionEnd, boolean showImeIfNeeded,
|
| boolean isNonImeChange) {
|
| try {
|
| TraceEvent.begin("ContentViewCore.updateImeAdapter");
|
| @@ -2008,7 +2008,7 @@ public class ContentViewCore implements AccessibilityStateChangeListener, Displa
|
|
|
| mImeAdapter.attach(nativeImeAdapterAndroid);
|
| mImeAdapter.updateKeyboardVisibility(
|
| - textInputType, textInputFlags, showImeIfNeeded);
|
| + textInputType, textInputFlags, textInputMode, showImeIfNeeded);
|
| mImeAdapter.updateState(text, selectionStart, selectionEnd, compositionStart,
|
| compositionEnd, isNonImeChange);
|
|
|
|
|