| 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/common/accelerators/accelerator_commands.h" | 5 #include "ash/common/accelerators/accelerator_commands.h" |
| 6 | 6 |
| 7 #include "ash/common/wm/mru_window_tracker.h" | 7 #include "ash/common/wm/mru_window_tracker.h" |
| 8 #include "ash/common/wm/window_state.h" | 8 #include "ash/common/wm/window_state.h" |
| 9 #include "ash/common/wm/wm_event.h" | 9 #include "ash/common/wm/wm_event.h" |
| 10 #include "ash/common/wm_shell.h" | |
| 11 #include "ash/common/wm_window.h" | 10 #include "ash/common/wm_window.h" |
| 12 #include "ash/shell.h" | 11 #include "ash/shell.h" |
| 12 #include "ash/wm/window_util.h" |
| 13 #include "base/metrics/user_metrics.h" | 13 #include "base/metrics/user_metrics.h" |
| 14 | 14 |
| 15 namespace ash { | 15 namespace ash { |
| 16 namespace accelerators { | 16 namespace accelerators { |
| 17 | 17 |
| 18 bool ToggleMinimized() { | 18 bool ToggleMinimized() { |
| 19 WmWindow* window = WmShell::Get()->GetActiveWindow(); | 19 WmWindow* window = WmWindow::Get(wm::GetActiveWindow()); |
| 20 // Attempt to restore the window that would be cycled through next from | 20 // Attempt to restore the window that would be cycled through next from |
| 21 // the launcher when there is no active window. | 21 // the launcher when there is no active window. |
| 22 if (!window) { | 22 if (!window) { |
| 23 MruWindowTracker::WindowList mru_windows( | 23 MruWindowTracker::WindowList mru_windows( |
| 24 Shell::Get()->mru_window_tracker()->BuildMruWindowList()); | 24 Shell::Get()->mru_window_tracker()->BuildMruWindowList()); |
| 25 if (!mru_windows.empty()) | 25 if (!mru_windows.empty()) |
| 26 mru_windows.front()->GetWindowState()->Activate(); | 26 mru_windows.front()->GetWindowState()->Activate(); |
| 27 return true; | 27 return true; |
| 28 } | 28 } |
| 29 wm::WindowState* window_state = window->GetWindowState(); | 29 wm::WindowState* window_state = window->GetWindowState(); |
| 30 if (!window_state->CanMinimize()) | 30 if (!window_state->CanMinimize()) |
| 31 return false; | 31 return false; |
| 32 window_state->Minimize(); | 32 window_state->Minimize(); |
| 33 return true; | 33 return true; |
| 34 } | 34 } |
| 35 | 35 |
| 36 void ToggleMaximized() { | 36 void ToggleMaximized() { |
| 37 WmWindow* active_window = WmShell::Get()->GetActiveWindow(); | 37 WmWindow* active_window = WmWindow::Get(wm::GetActiveWindow()); |
| 38 if (!active_window) | 38 if (!active_window) |
| 39 return; | 39 return; |
| 40 base::RecordAction(base::UserMetricsAction("Accel_Toggle_Maximized")); | 40 base::RecordAction(base::UserMetricsAction("Accel_Toggle_Maximized")); |
| 41 wm::WMEvent event(wm::WM_EVENT_TOGGLE_MAXIMIZE); | 41 wm::WMEvent event(wm::WM_EVENT_TOGGLE_MAXIMIZE); |
| 42 active_window->GetWindowState()->OnWMEvent(&event); | 42 active_window->GetWindowState()->OnWMEvent(&event); |
| 43 } | 43 } |
| 44 | 44 |
| 45 void ToggleFullscreen() { | 45 void ToggleFullscreen() { |
| 46 WmWindow* active_window = WmShell::Get()->GetActiveWindow(); | 46 WmWindow* active_window = WmWindow::Get(wm::GetActiveWindow()); |
| 47 if (!active_window) | 47 if (!active_window) |
| 48 return; | 48 return; |
| 49 const wm::WMEvent event(wm::WM_EVENT_TOGGLE_FULLSCREEN); | 49 const wm::WMEvent event(wm::WM_EVENT_TOGGLE_FULLSCREEN); |
| 50 active_window->GetWindowState()->OnWMEvent(&event); | 50 active_window->GetWindowState()->OnWMEvent(&event); |
| 51 } | 51 } |
| 52 | 52 |
| 53 } // namespace accelerators | 53 } // namespace accelerators |
| 54 } // namespace ash | 54 } // namespace ash |
| OLD | NEW |