| 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 "ash/shell.h" | 5 #include "ash/shell.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 #include <string> | 8 #include <string> |
| 9 #include <utility> | 9 #include <utility> |
| 10 | 10 |
| (...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 235 // static | 235 // static |
| 236 aura::Window* Shell::GetTargetRootWindow() { | 236 aura::Window* Shell::GetTargetRootWindow() { |
| 237 CHECK(HasInstance()); | 237 CHECK(HasInstance()); |
| 238 Shell* shell = GetInstance(); | 238 Shell* shell = GetInstance(); |
| 239 if (shell->scoped_target_root_window_) | 239 if (shell->scoped_target_root_window_) |
| 240 return shell->scoped_target_root_window_; | 240 return shell->scoped_target_root_window_; |
| 241 return shell->target_root_window_; | 241 return shell->target_root_window_; |
| 242 } | 242 } |
| 243 | 243 |
| 244 // static | 244 // static |
| 245 gfx::Screen* Shell::GetScreen() { | |
| 246 return gfx::Screen::GetScreen(); | |
| 247 } | |
| 248 | |
| 249 // static | |
| 250 aura::Window::Windows Shell::GetAllRootWindows() { | 245 aura::Window::Windows Shell::GetAllRootWindows() { |
| 251 CHECK(HasInstance()); | 246 CHECK(HasInstance()); |
| 252 return Shell::GetInstance()->window_tree_host_manager()->GetAllRootWindows(); | 247 return Shell::GetInstance()->window_tree_host_manager()->GetAllRootWindows(); |
| 253 } | 248 } |
| 254 | 249 |
| 255 // static | 250 // static |
| 256 aura::Window* Shell::GetContainer(aura::Window* root_window, | 251 aura::Window* Shell::GetContainer(aura::Window* root_window, |
| 257 int container_id) { | 252 int container_id) { |
| 258 return root_window->GetChildById(container_id); | 253 return root_window->GetChildById(container_id); |
| 259 } | 254 } |
| (...skipping 641 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 901 window_tree_host_manager_->CreatePrimaryHost( | 896 window_tree_host_manager_->CreatePrimaryHost( |
| 902 ShellInitParamsToAshWindowTreeHostInitParams(init_params)); | 897 ShellInitParamsToAshWindowTreeHostInitParams(init_params)); |
| 903 aura::Window* root_window = window_tree_host_manager_->GetPrimaryRootWindow(); | 898 aura::Window* root_window = window_tree_host_manager_->GetPrimaryRootWindow(); |
| 904 target_root_window_ = root_window; | 899 target_root_window_ = root_window; |
| 905 | 900 |
| 906 #if defined(OS_CHROMEOS) | 901 #if defined(OS_CHROMEOS) |
| 907 resolution_notification_controller_.reset( | 902 resolution_notification_controller_.reset( |
| 908 new ResolutionNotificationController); | 903 new ResolutionNotificationController); |
| 909 #endif | 904 #endif |
| 910 | 905 |
| 911 cursor_manager_.SetDisplay(GetScreen()->GetPrimaryDisplay()); | 906 cursor_manager_.SetDisplay(gfx::Screen::GetScreen()->GetPrimaryDisplay()); |
| 912 | 907 |
| 913 nested_accelerator_controller_.reset( | 908 nested_accelerator_controller_.reset( |
| 914 new ::wm::NestedAcceleratorController(new NestedAcceleratorDelegate)); | 909 new ::wm::NestedAcceleratorController(new NestedAcceleratorDelegate)); |
| 915 accelerator_controller_.reset(new AcceleratorController); | 910 accelerator_controller_.reset(new AcceleratorController); |
| 916 maximize_mode_controller_.reset(new MaximizeModeController()); | 911 maximize_mode_controller_.reset(new MaximizeModeController()); |
| 917 | 912 |
| 918 AddPreTargetHandler(window_tree_host_manager_->input_method_event_handler()); | 913 AddPreTargetHandler(window_tree_host_manager_->input_method_event_handler()); |
| 919 | 914 |
| 920 #if defined(OS_CHROMEOS) | 915 #if defined(OS_CHROMEOS) |
| 921 magnifier_key_scroll_handler_ = MagnifierKeyScroller::CreateHandler(); | 916 magnifier_key_scroll_handler_ = MagnifierKeyScroller::CreateHandler(); |
| (...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1168 | 1163 |
| 1169 void Shell::OnWindowActivated( | 1164 void Shell::OnWindowActivated( |
| 1170 aura::client::ActivationChangeObserver::ActivationReason reason, | 1165 aura::client::ActivationChangeObserver::ActivationReason reason, |
| 1171 aura::Window* gained_active, | 1166 aura::Window* gained_active, |
| 1172 aura::Window* lost_active) { | 1167 aura::Window* lost_active) { |
| 1173 if (gained_active) | 1168 if (gained_active) |
| 1174 target_root_window_ = gained_active->GetRootWindow(); | 1169 target_root_window_ = gained_active->GetRootWindow(); |
| 1175 } | 1170 } |
| 1176 | 1171 |
| 1177 } // namespace ash | 1172 } // namespace ash |
| OLD | NEW |