| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/ui/views/ash/chrome_browser_main_extra_parts_ash.h" | 5 #include "chrome/browser/ui/views/ash/chrome_browser_main_extra_parts_ash.h" |
| 6 | 6 |
| 7 #include "ash/root_window_controller.h" | 7 #include "ash/root_window_controller.h" |
| 8 #include "ash/session_state_delegate.h" | 8 #include "ash/session_state_delegate.h" |
| 9 #include "ash/shell.h" | 9 #include "ash/shell.h" |
| 10 #include "base/command_line.h" | 10 #include "base/command_line.h" |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 #endif | 88 #endif |
| 89 } | 89 } |
| 90 | 90 |
| 91 void ChromeBrowserMainExtraPartsAsh::PostProfileInit() { | 91 void ChromeBrowserMainExtraPartsAsh::PostProfileInit() { |
| 92 if (!ash::Shell::HasInstance()) | 92 if (!ash::Shell::HasInstance()) |
| 93 return; | 93 return; |
| 94 | 94 |
| 95 // Initialize TabScrubber after the Ash Shell has been initialized. | 95 // Initialize TabScrubber after the Ash Shell has been initialized. |
| 96 TabScrubber::GetInstance(); | 96 TabScrubber::GetInstance(); |
| 97 // Activate virtual keyboard after profile is initialized. It depends on the | 97 // Activate virtual keyboard after profile is initialized. It depends on the |
| 98 // default profile. If keyboard usability experiment flag is set, defer the | 98 // default profile. |
| 99 // activation to UpdateWindow() in virtual_keyboard_window_controller.cc. | 99 ash::Shell::GetPrimaryRootWindowController()->ActivateKeyboard( |
| 100 if (!keyboard::IsKeyboardUsabilityExperimentEnabled()) { | 100 ash::Shell::GetInstance()->keyboard_controller()); |
| 101 ash::Shell::GetPrimaryRootWindowController()->ActivateKeyboard( | |
| 102 ash::Shell::GetInstance()->keyboard_controller()); | |
| 103 } | |
| 104 } | 101 } |
| 105 | 102 |
| 106 void ChromeBrowserMainExtraPartsAsh::PostMainMessageLoopRun() { | 103 void ChromeBrowserMainExtraPartsAsh::PostMainMessageLoopRun() { |
| 107 chrome::CloseAsh(); | 104 chrome::CloseAsh(); |
| 108 } | 105 } |
| OLD | NEW |