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

Side by Side Diff: ash/shell.h

Issue 844763006: Change overview mode to so that docked panel windows are not grouped together. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed stale pointer in ScopedTransformOverviewWindow. Created 5 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
« no previous file with comments | « ash/ash.gyp ('k') | ash/shell.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #ifndef ASH_SHELL_H_ 5 #ifndef ASH_SHELL_H_
6 #define ASH_SHELL_H_ 6 #define ASH_SHELL_H_
7 7
8 #include <utility> 8 #include <utility>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after
298 // unlocked. 298 // unlocked.
299 void OnLockStateChanged(bool locked); 299 void OnLockStateChanged(bool locked);
300 300
301 // Called when a casting session is started or stopped. 301 // Called when a casting session is started or stopped.
302 void OnCastingSessionStartedOrStopped(bool started); 302 void OnCastingSessionStartedOrStopped(bool started);
303 303
304 // Called when the overview mode is about to be started (before the windows 304 // Called when the overview mode is about to be started (before the windows
305 // get re-arranged). 305 // get re-arranged).
306 void OnOverviewModeStarting(); 306 void OnOverviewModeStarting();
307 307
308 // Called before the overview mode is ending (before the windows get arranged 308 // Called after overview mode has ended.
309 // to their final position). 309 void OnOverviewModeEnded();
310 void OnOverviewModeEnding();
311 310
312 // Called after maximize mode has started, windows might still animate though. 311 // Called after maximize mode has started, windows might still animate though.
313 void OnMaximizeModeStarted(); 312 void OnMaximizeModeStarted();
314 313
315 // Called after maximize mode has ended, windows might still be returning to 314 // Called after maximize mode has ended, windows might still be returning to
316 // their original position. 315 // their original position.
317 void OnMaximizeModeEnded(); 316 void OnMaximizeModeEnded();
318 317
319 // Called when a root window is created. 318 // Called when a root window is created.
320 void OnRootWindowAdded(aura::Window* root_window); 319 void OnRootWindowAdded(aura::Window* root_window);
(...skipping 448 matching lines...) Expand 10 before | Expand all | Expand 10 after
769 768
770 // Injected content::GPUDataManager support. 769 // Injected content::GPUDataManager support.
771 scoped_ptr<GPUSupport> gpu_support_; 770 scoped_ptr<GPUSupport> gpu_support_;
772 771
773 DISALLOW_COPY_AND_ASSIGN(Shell); 772 DISALLOW_COPY_AND_ASSIGN(Shell);
774 }; 773 };
775 774
776 } // namespace ash 775 } // namespace ash
777 776
778 #endif // ASH_SHELL_H_ 777 #endif // ASH_SHELL_H_
OLDNEW
« no previous file with comments | « ash/ash.gyp ('k') | ash/shell.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698