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

Unified Diff: content/public/android/java/src/org/chromium/content/browser/ContentViewClient.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/ContentViewClient.java
diff --git a/content/public/android/java/src/org/chromium/content/browser/ContentViewClient.java b/content/public/android/java/src/org/chromium/content/browser/ContentViewClient.java
index 4ec6b0fde2e0c33713e294f5c994da17d4153119..9ce824e1b9c65962d139d0325fc004579e51e9c9 100644
--- a/content/public/android/java/src/org/chromium/content/browser/ContentViewClient.java
+++ b/content/public/android/java/src/org/chromium/content/browser/ContentViewClient.java
@@ -73,12 +73,11 @@ public class ContentViewClient {
}
/**
- * Notified when a change to the IME was requested.
+ * Notified when the editability of the focused node changes.
*
- * @param requestShow Whether the IME was requested to be shown (may already be showing
- * though).
+ * @param editable Whether the focused node is editable.
*/
- public void onImeStateChangeRequested(boolean requestShow) {
+ public void onFocusedNodeEditabilityChanged(boolean editable) {
}
/**

Powered by Google App Engine
This is Rietveld 408576698