| 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/accessibility_delegate.h" | 7 #include "ash/common/accessibility_delegate.h" |
| 8 #include "ash/common/wm/maximize_mode/maximize_mode_controller.h" | 8 #include "ash/common/wm/maximize_mode/maximize_mode_controller.h" |
| 9 #include "ash/common/wm_shell.h" | 9 #include "ash/common/wm_shell.h" |
| 10 #include "ash/display/display_manager.h" | 10 #include "ash/display/display_manager.h" |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 } | 126 } |
| 127 | 127 |
| 128 void WMHelperAsh::OnMaximizeModeStarted() { | 128 void WMHelperAsh::OnMaximizeModeStarted() { |
| 129 NotifyMaximizeModeStarted(); | 129 NotifyMaximizeModeStarted(); |
| 130 } | 130 } |
| 131 | 131 |
| 132 void WMHelperAsh::OnMaximizeModeEnded() { | 132 void WMHelperAsh::OnMaximizeModeEnded() { |
| 133 NotifyMaximizeModeEnded(); | 133 NotifyMaximizeModeEnded(); |
| 134 } | 134 } |
| 135 | 135 |
| 136 void WMHelperAsh::OnOverviewModeStarting() { |
| 137 NotifyOverviewModeStarted(); |
| 138 } |
| 139 |
| 140 void WMHelperAsh::OnOverviewModeEnded() { |
| 141 NotifyOverviewModeEnded(); |
| 142 } |
| 143 |
| 136 } // namespace exo | 144 } // namespace exo |
| OLD | NEW |