Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(178)

Unified Diff: content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java

Issue 411553002: Hide the PopupZoomer when input is received from IME (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « AUTHORS ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 6f22fcf9811528abd9d58739344be7b401c1f721..731af01f76b9a1f39cf9634af814fb09efec131c 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
@@ -548,6 +548,9 @@ public class ContentViewCore
new ImeAdapter.ImeAdapterDelegate() {
@Override
public void onImeEvent(boolean isFinish) {
+ if (mPopupZoomer.isShowing()) {
jdduke (slow) 2014/07/23 14:39:31 I'll defer to aurimas@ here, as I don't understand
aurimas (slooooooooow) 2014/07/25 21:09:31 I dont think we need to check for isFinish. I thin
+ mPopupZoomer.hide(true);
+ }
getContentViewClient().onImeEvent();
if (!isFinish) {
hideHandles();
« no previous file with comments | « AUTHORS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698