Chromium Code Reviews| Index: ash/common/wm_shell.cc |
| diff --git a/ash/common/wm_shell.cc b/ash/common/wm_shell.cc |
| index 99bda5c96f60c5b26e3e26131026ecf744bc0a84..caa128a896b221f4b347bcc5ffbb486501c74e3a 100644 |
| --- a/ash/common/wm_shell.cc |
| +++ b/ash/common/wm_shell.cc |
| @@ -10,6 +10,7 @@ |
| #include "ash/common/system/chromeos/session/logout_confirmation_controller.h" |
| #include "ash/common/system/tray/system_tray_delegate.h" |
| #include "ash/common/system/tray/system_tray_notifier.h" |
| +#include "ash/common/wm/maximize_mode/maximize_mode_controller.h" |
| #include "ash/common/wm/mru_window_tracker.h" |
| #include "ash/common/wm/overview/window_selector_controller.h" |
| #include "ash/common/wm_window.h" |
| @@ -121,4 +122,12 @@ void WmShell::DeleteMruWindowTracker() { |
| mru_window_tracker_.reset(); |
| } |
| +void WmShell::CreateMaximizeModeController() { |
|
James Cook
2016/07/01 20:09:09
nit: Match header file order
sky
2016/07/01 20:13:56
Done.
|
| + maximize_mode_controller_.reset(new MaximizeModeController); |
| +} |
| + |
| +void WmShell::DeleteMaximizeModeController() { |
| + maximize_mode_controller_.reset(); |
| +} |
| + |
| } // namespace ash |