| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 "components/exo/wm_helper_ash.h" | 5 #include "components/exo/wm_helper_ash.h" |
| 6 | 6 |
| 7 #include "ash/common/wm/maximize_mode/maximize_mode_controller.h" | 7 #include "ash/common/wm/maximize_mode/maximize_mode_controller.h" |
| 8 #include "ash/common/wm_shell.h" | 8 #include "ash/common/wm_shell.h" |
| 9 #include "ash/display/display_manager.h" | 9 #include "ash/display/display_manager.h" |
| 10 #include "ash/shell.h" | 10 #include "ash/shell.h" |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 } | 110 } |
| 111 | 111 |
| 112 void WMHelperAsh::OnMaximizeModeStarted() { | 112 void WMHelperAsh::OnMaximizeModeStarted() { |
| 113 NotifyMaximizeModeStarted(); | 113 NotifyMaximizeModeStarted(); |
| 114 } | 114 } |
| 115 | 115 |
| 116 void WMHelperAsh::OnMaximizeModeEnded() { | 116 void WMHelperAsh::OnMaximizeModeEnded() { |
| 117 NotifyMaximizeModeEnded(); | 117 NotifyMaximizeModeEnded(); |
| 118 } | 118 } |
| 119 | 119 |
| 120 void WMHelperAsh::OnOverviewModeStarting() { |
| 121 NotifyOverviewModeStarted(); |
| 122 } |
| 123 |
| 124 void WMHelperAsh::OnOverviewModeEnded() { |
| 125 NotifyOverviewModeEnded(); |
| 126 } |
| 127 |
| 120 } // namespace exo | 128 } // namespace exo |
| OLD | NEW |