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

Side by Side Diff: ash/ash_switches.cc

Issue 9316005: Aura: Rework window mode flags to compact/overlapping/managed (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix dcheck Created 8 years, 10 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 | Annotate | Revision Log
« no previous file with comments | « ash/ash_switches.h ('k') | ash/shell.h » ('j') | ash/shell.h » ('J')
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 #include "ash/ash_switches.h" 5 #include "ash/ash_switches.h"
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "base/command_line.h" 9 #include "base/command_line.h"
10 10
(...skipping 14 matching lines...) Expand all
25 // instead of displaying an interactive animation. 25 // instead of displaying an interactive animation.
26 const char kAuraLegacyPowerButton[] = "aura-legacy-power-button"; 26 const char kAuraLegacyPowerButton[] = "aura-legacy-power-button";
27 27
28 // Avoid drawing drop shadows under windows. 28 // Avoid drawing drop shadows under windows.
29 const char kAuraNoShadows[] = "aura-no-shadows"; 29 const char kAuraNoShadows[] = "aura-no-shadows";
30 30
31 // Use Aura-style translucent window frame. 31 // Use Aura-style translucent window frame.
32 const char kAuraTranslucentFrames[] = "aura-translucent-frames"; 32 const char kAuraTranslucentFrames[] = "aura-translucent-frames";
33 33
34 // Use a custom window style, e.g. --aura-window-mode=compact. 34 // Use a custom window style, e.g. --aura-window-mode=compact.
35 // When this flag is not passed we default to "normal" mode. 35 // When this flag is not passed we default to "overlapping" mode.
36 const char kAuraWindowMode[] = "aura-window-mode"; 36 const char kAuraWindowMode[] = "aura-window-mode";
37 37
38 // Show only a single maximized window, like traditional non-Aura builds. 38 // Show only a single maximized window, like traditional non-Aura builds.
39 // Useful for low-resolution screens, such as on laptops. 39 // Useful for low-resolution screens, such as on laptops.
40 const char kAuraWindowModeCompact[] = "compact"; 40 const char kAuraWindowModeCompact[] = "compact";
41 41
42 // Default window management with multiple draggable windows. 42 // Smart window management with workspace manager that automatically lays out
43 const char kAuraWindowModeNormal[] = "normal"; 43 // windows.
44 const char kAuraWindowModeManaged[] = "managed";
44 45
45 // Use Aura-style workspace window dragging and sizing. 46 // Traditional window management with multiple draggable windows.
46 const char kAuraWorkspaceManager[] = "aura-workspace-manager"; 47 const char kAuraWindowModeOverlapping[] = "overlapping";
47 48
48 } // namespace switches 49 } // namespace switches
49 } // namespace ash 50 } // namespace ash
OLDNEW
« no previous file with comments | « ash/ash_switches.h ('k') | ash/shell.h » ('j') | ash/shell.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698