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

Unified Diff: ash/mus/keyboard_ui_mus.cc

Issue 2445293002: Make the virtual keyboard show up on the display with input focus. (Closed)
Patch Set: rebase & update Created 4 years, 1 month 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: ash/mus/keyboard_ui_mus.cc
diff --git a/ash/mus/keyboard_ui_mus.cc b/ash/mus/keyboard_ui_mus.cc
index e9d9c20fad8eeb4d1c3f48d516444b25d4a276e2..77672db0e42582b422c36f2ed6b29fe49a4c7ad7 100644
--- a/ash/mus/keyboard_ui_mus.cc
+++ b/ash/mus/keyboard_ui_mus.cc
@@ -35,6 +35,11 @@ void KeyboardUIMus::Show() {
keyboard_->Show();
}
+void KeyboardUIMus::ShowInSpecificDisplay(int64_t display_id) {
+ // TODO(yhanada): Send display id
oshima 2016/11/08 17:26:04 can you file a bug and add reference to it?
yhanada 2016/11/14 22:48:47 This TODO depends on the TODO in keyboard.mojom:L1
+ keyboard_->Show();
+}
+
bool KeyboardUIMus::IsEnabled() {
return is_enabled_;
}

Powered by Google App Engine
This is Rietveld 408576698