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

Unified Diff: ash/display/display_controller.cc

Issue 47873003: Add a full screen virtual keyboard to virtual keyboard root window (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 2 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: ash/display/display_controller.cc
diff --git a/ash/display/display_controller.cc b/ash/display/display_controller.cc
index 8a0b6b97457a7b1f13614776ca83c1dcb9a120f7..9280c52686ad519fa29da91a60d8360ab6a23cc2 100644
--- a/ash/display/display_controller.cc
+++ b/ash/display/display_controller.cc
@@ -339,6 +339,11 @@ void DisplayController::CloseChildWindows() {
}
}
}
+ if (virtual_keyboard_window_controller_ &&
+ virtual_keyboard_window_controller_->root_window_controller()) {
+ virtual_keyboard_window_controller_->root_window_controller()->
+ CloseChildWindows();
+ }
oshima 2013/11/01 00:09:02 can you call CloseNonDesktopDisplay() at the en
bshe 2013/11/12 15:28:33 This close child window currently depends on event
oshima 2013/11/13 21:22:49 Let me look into this dependency.
oshima 2013/11/13 22:23:37 What kind of problem you have seen? I just tried a
bshe 2013/11/14 00:11:29 Talked on hangout. I misunderstood you, sorry. Cha
}
std::vector<aura::RootWindow*> DisplayController::GetAllRootWindows() {

Powered by Google App Engine
This is Rietveld 408576698