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

Unified Diff: ui/base/ime/input_method.h

Issue 715733002: [Android] Show autofill popup after animation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix existing tests and add some more. Created 6 years 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: ui/base/ime/input_method.h
diff --git a/ui/base/ime/input_method.h b/ui/base/ime/input_method.h
index 164b1f1a7e80ceb53cb0d8a66f877a353341bb65..888a955a42e49a757fef922cf66a2f28e8d5aedd 100644
--- a/ui/base/ime/input_method.h
+++ b/ui/base/ime/input_method.h
@@ -161,6 +161,14 @@ class InputMethod {
// Displays an on screen keyboard if enabled.
virtual void ShowImeIfNeeded() = 0;
+ // Sets whether the on screen keyboard is enabled and supported by the
+ // platform.
+ virtual void SetSupportsOnScreenKeyboard(bool supported) = 0;
yukawa 2014/12/24 03:09:49 I'm still unsure why we need setter for this prope
+
+ // Returns true if on screen keyboard is enabled and supported by the
+ // platform.
+ virtual bool SupportsOnScreenKeyboard() const = 0;
yukawa 2014/12/24 03:09:49 Related to the above comment, if the return value
+
// Management of the observer list.
virtual void AddObserver(InputMethodObserver* observer) = 0;
virtual void RemoveObserver(InputMethodObserver* observer) = 0;

Powered by Google App Engine
This is Rietveld 408576698