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

Unified Diff: ui/base/ime/remote_input_method_win.cc

Issue 826713002: [ChromeOS] Show autofill popup after keyboard (if any) is shown. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/remote_input_method_win.cc
diff --git a/ui/base/ime/remote_input_method_win.cc b/ui/base/ime/remote_input_method_win.cc
index ceb885631fae6e7c59de220fb92f345f33690b73..f2914f08c65b9ff837c5679c5cae787dff87b80d 100644
--- a/ui/base/ime/remote_input_method_win.cc
+++ b/ui/base/ime/remote_input_method_win.cc
@@ -286,6 +286,13 @@ class RemoteInputMethodWin : public InputMethod,
virtual void ShowImeIfNeeded() override {
}
+ virtual void SetSupportsOnScreenKeyboard(bool supports) override {
+ }
+
+ virtual bool SupportsOnScreenKeyboard() const override {
+ return false;
+ }
+
virtual void AddObserver(InputMethodObserver* observer) override {
observer_list_.AddObserver(observer);
}

Powered by Google App Engine
This is Rietveld 408576698