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() { | 245 gfx::Screen* Shell::GetScreen() { |
oshima
2016/01/19 20:44:31
This is no longer useful. I'll remove it in a sepa
scottmg
2016/01/19 21:55:57
OK, thanks.
| |
246 return gfx::Screen::GetScreenByType(gfx::SCREEN_TYPE_ALTERNATE); | 246 return gfx::Screen::GetScreen(); |
247 } | 247 } |
248 | 248 |
249 // static | 249 // static |
250 aura::Window::Windows Shell::GetAllRootWindows() { | 250 aura::Window::Windows Shell::GetAllRootWindows() { |
251 CHECK(HasInstance()); | 251 CHECK(HasInstance()); |
252 return Shell::GetInstance()->window_tree_host_manager()->GetAllRootWindows(); | 252 return Shell::GetInstance()->window_tree_host_manager()->GetAllRootWindows(); |
253 } | 253 } |
254 | 254 |
255 // static | 255 // static |
256 aura::Window* Shell::GetContainer(aura::Window* root_window, | 256 aura::Window* Shell::GetContainer(aura::Window* root_window, |
(...skipping 911 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1168 | 1168 |
1169 void Shell::OnWindowActivated( | 1169 void Shell::OnWindowActivated( |
1170 aura::client::ActivationChangeObserver::ActivationReason reason, | 1170 aura::client::ActivationChangeObserver::ActivationReason reason, |
1171 aura::Window* gained_active, | 1171 aura::Window* gained_active, |
1172 aura::Window* lost_active) { | 1172 aura::Window* lost_active) { |
1173 if (gained_active) | 1173 if (gained_active) |
1174 target_root_window_ = gained_active->GetRootWindow(); | 1174 target_root_window_ = gained_active->GetRootWindow(); |
1175 } | 1175 } |
1176 | 1176 |
1177 } // namespace ash | 1177 } // namespace ash |
OLD | NEW |