OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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/accelerators/accelerator_commands.h" | 5 #include "ash/accelerators/accelerator_commands.h" |
6 | 6 |
7 #include "ash/common/wm_shell.h" | |
8 #include "ash/common/wm_window.h" | |
9 #include "ash/wm/mru_window_tracker.h" | 7 #include "ash/wm/mru_window_tracker.h" |
10 #include "ash/wm/window_state.h" | 8 #include "ash/wm/window_state.h" |
11 #include "ash/wm/wm_event.h" | 9 #include "ash/wm/wm_event.h" |
| 10 #include "ash/wm_shell.h" |
| 11 #include "ash/wm_window.h" |
12 #include "base/metrics/user_metrics.h" | 12 #include "base/metrics/user_metrics.h" |
13 | 13 |
14 namespace ash { | 14 namespace ash { |
15 namespace accelerators { | 15 namespace accelerators { |
16 | 16 |
17 bool ToggleMinimized() { | 17 bool ToggleMinimized() { |
18 WmWindow* window = WmShell::Get()->GetActiveWindow(); | 18 WmWindow* window = WmShell::Get()->GetActiveWindow(); |
19 // Attempt to restore the window that would be cycled through next from | 19 // Attempt to restore the window that would be cycled through next from |
20 // the launcher when there is no active window. | 20 // the launcher when there is no active window. |
21 if (!window) { | 21 if (!window) { |
(...skipping 22 matching lines...) Expand all Loading... |
44 void ToggleFullscreen() { | 44 void ToggleFullscreen() { |
45 WmWindow* active_window = WmShell::Get()->GetActiveWindow(); | 45 WmWindow* active_window = WmShell::Get()->GetActiveWindow(); |
46 if (!active_window) | 46 if (!active_window) |
47 return; | 47 return; |
48 const wm::WMEvent event(wm::WM_EVENT_TOGGLE_FULLSCREEN); | 48 const wm::WMEvent event(wm::WM_EVENT_TOGGLE_FULLSCREEN); |
49 active_window->GetWindowState()->OnWMEvent(&event); | 49 active_window->GetWindowState()->OnWMEvent(&event); |
50 } | 50 } |
51 | 51 |
52 } // namespace accelerators | 52 } // namespace accelerators |
53 } // namespace ash | 53 } // namespace ash |
OLD | NEW |