OLD | NEW |
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 Loading... |
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 |
OLD | NEW |