| Index: ash/shell.cc
|
| diff --git a/ash/shell.cc b/ash/shell.cc
|
| index e97959e8e006721cc4da82e490a3a021dad2393c..6fa1c27b40aff6c365972e23001743212b5b7601 100644
|
| --- a/ash/shell.cc
|
| +++ b/ash/shell.cc
|
| @@ -23,6 +23,7 @@
|
| #include "ash/display/mouse_cursor_event_filter.h"
|
| #include "ash/display/resolution_notification_controller.h"
|
| #include "ash/display/screen_position_controller.h"
|
| +#include "ash/display/virtual_keyboard_window_controller.h"
|
| #include "ash/drag_drop/drag_drop_controller.h"
|
| #include "ash/first_run/first_run_helper_impl.h"
|
| #include "ash/focus_cycler.h"
|
| @@ -335,13 +336,6 @@ void Shell::SetDisplayWorkAreaInsets(Window* contains,
|
| }
|
|
|
| void Shell::OnLoginStateChanged(user::LoginStatus status) {
|
| - if (status != user::LOGGED_IN_NONE) {
|
| - // TODO(bshe): Primary root window controller may not be the controller to
|
| - // attach virtual keyboard. See http://crbug.com/303429
|
| - InitKeyboard(GetPrimaryRootWindowController());
|
| - GetPrimaryRootWindowController()->ActivateKeyboard(
|
| - keyboard_controller_.get());
|
| - }
|
| FOR_EACH_OBSERVER(ShellObserver, observers_, OnLoginStateChanged(status));
|
| }
|
|
|
| @@ -379,6 +373,20 @@ void Shell::CreateLauncher() {
|
| (*iter)->shelf()->CreateLauncher();
|
| }
|
|
|
| +void Shell::CreateKeyboard() {
|
| + // TODO(bshe): Primary root window controller may not be the controller to
|
| + // attach virtual keyboard. See http://crbug.com/303429
|
| + internal::RootWindowController* root_window_controller = NULL;
|
| + if (keyboard::IsKeyboardUsabilityTestEnabled()) {
|
| + root_window_controller = display_controller()->
|
| + virtual_keyboard_window_controller()->root_window_controller();
|
| + } else {
|
| + root_window_controller = GetPrimaryRootWindowController();
|
| + }
|
| + InitKeyboard(root_window_controller);
|
| + root_window_controller->ActivateKeyboard(keyboard_controller_.get());
|
| +}
|
| +
|
| void Shell::ShowLauncher() {
|
| RootWindowControllerList controllers = GetAllRootWindowControllers();
|
| for (RootWindowControllerList::iterator iter = controllers.begin();
|
| @@ -696,7 +704,7 @@ void Shell::Init() {
|
| output_configurator_animation_.reset(
|
| new internal::OutputConfiguratorAnimation());
|
| output_configurator_->AddObserver(output_configurator_animation_.get());
|
| - if (command_line->HasSwitch(keyboard::switches::kKeyboardUsabilityTest)) {
|
| + if (keyboard::IsKeyboardUsabilityTestEnabled()) {
|
| display_manager_->SetSecondDisplayMode(
|
| internal::DisplayManager::VIRTUAL_KEYBOARD);
|
| }
|
|
|