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

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

Issue 1209243003: Changed the constraints for hiding the top controls (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Used pollForUIThreadCriteria instead of pollForCriteria in the test code Created 5 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
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 d97d4860fb5e2a8721a9fb9895dd696377441f51..e562b2aa7a2f343392bdbbec7581fa86a76bea1c 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
@@ -61,11 +61,6 @@ public class ImeAdapter {
void onImeEvent();
/**
- * Called when a request to hide the keyboard is sent to InputMethodManager.
- */
- void onDismissInput();
-
- /**
* Called when the keyboard could not be shown due to the hardware keyboard being present.
*/
void onKeyboardBoundsUnchanged();
@@ -289,7 +284,6 @@ public class ImeAdapter {
mInputMethodManagerWrapper.hideSoftInputFromWindow(view.getWindowToken(), 0,
unzoomIfNeeded ? mViewEmbedder.getNewShowKeyboardReceiver() : null);
}
- mViewEmbedder.onDismissInput();
}
private boolean hasInputType() {

Powered by Google App Engine
This is Rietveld 408576698