Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(108)

Side by Side Diff: components/exo/wm_helper_ash.cc

Issue 2396883003: exo: Fix dragging edge cases (Closed)
Patch Set: Rebase Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/shell.h" 10 #include "ash/shell.h"
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
133 } 133 }
134 134
135 void WMHelperAsh::OnMaximizeModeEnded() { 135 void WMHelperAsh::OnMaximizeModeEnded() {
136 NotifyMaximizeModeEnded(); 136 NotifyMaximizeModeEnded();
137 } 137 }
138 138
139 void WMHelperAsh::OnKeyboardDeviceConfigurationChanged() { 139 void WMHelperAsh::OnKeyboardDeviceConfigurationChanged() {
140 NotifyKeyboardDeviceConfigurationChanged(); 140 NotifyKeyboardDeviceConfigurationChanged();
141 } 141 }
142 142
143 void WMHelperAsh::OnOverviewModeStarting() {
144 NotifyOverviewModeStarted();
145 }
146
147 void WMHelperAsh::OnOverviewModeEnded() {
148 NotifyOverviewModeEnded();
149 }
150
143 } // namespace exo 151 } // namespace exo
OLDNEW
« components/exo/shell_surface.cc ('K') | « components/exo/wm_helper_ash.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698