| Index: content/public/android/java/src/org/chromium/content/browser/input/ImeAdapter.java
|
| diff --git a/content/public/android/java/src/org/chromium/content/browser/input/ImeAdapter.java b/content/public/android/java/src/org/chromium/content/browser/input/ImeAdapter.java
|
| index a77aaa3d56a34bda8443a3b76bbaaed00c0a0d21..d3f14cf6423be7e60d96f9548fce08b54ecd930e 100644
|
| --- a/content/public/android/java/src/org/chromium/content/browser/input/ImeAdapter.java
|
| +++ b/content/public/android/java/src/org/chromium/content/browser/input/ImeAdapter.java
|
| @@ -280,11 +280,10 @@ public class ImeAdapter {
|
|
|
| private void showKeyboard() {
|
| mIsShowWithoutHideOutstanding = true;
|
| + mInputMethodManagerWrapper.showSoftInput(
|
| + mViewEmbedder.getAttachedView(), 0, mViewEmbedder.getNewShowKeyboardReceiver());
|
| if (mViewEmbedder.getAttachedView().getResources().getConfiguration().keyboard
|
| - == Configuration.KEYBOARD_NOKEYS) {
|
| - mInputMethodManagerWrapper.showSoftInput(mViewEmbedder.getAttachedView(), 0,
|
| - mViewEmbedder.getNewShowKeyboardReceiver());
|
| - } else {
|
| + != Configuration.KEYBOARD_NOKEYS) {
|
| mViewEmbedder.onKeyboardBoundsUnchanged();
|
| }
|
| }
|
|
|