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 namespace ash { | 7 namespace ash { |
8 namespace switches { | 8 namespace switches { |
9 | 9 |
10 // Enables an animated transition from the boot splash screen (Chrome logo on a | 10 // Enables an animated transition from the boot splash screen (Chrome logo on a |
(...skipping 15 matching lines...) Expand all Loading... |
26 | 26 |
27 // Copies the host window's content to the system background layer at startup. | 27 // Copies the host window's content to the system background layer at startup. |
28 // Can make boot slightly slower, but also hides an even-longer awkward period | 28 // Can make boot slightly slower, but also hides an even-longer awkward period |
29 // where we display a white background if the login wallpaper takes a long time | 29 // where we display a white background if the login wallpaper takes a long time |
30 // to load. | 30 // to load. |
31 const char kAshCopyHostBackgroundAtBoot[] = "ash-copy-host-background-at-boot"; | 31 const char kAshCopyHostBackgroundAtBoot[] = "ash-copy-host-background-at-boot"; |
32 | 32 |
33 // Enable keyboard shortcuts useful for debugging. | 33 // Enable keyboard shortcuts useful for debugging. |
34 const char kAshDebugShortcuts[] = "ash-debug-shortcuts"; | 34 const char kAshDebugShortcuts[] = "ash-debug-shortcuts"; |
35 | 35 |
| 36 // Disable auto window maximization logic. |
| 37 const char kAshDisableAutoMaximizing[] = "ash-disable-auto-maximizing"; |
| 38 |
36 // Disable support for auto window placement. | 39 // Disable support for auto window placement. |
37 const char kAshDisableAutoWindowPlacement[] = | 40 const char kAshDisableAutoWindowPlacement[] = |
38 "ash-enable-auto-window-placement"; | 41 "ash-enable-auto-window-placement"; |
39 | 42 |
40 // Disables boot animation v2, go back to v1. | 43 // Disables boot animation v2, go back to v1. |
41 const char kAshDisableBootAnimation2[] = "ash-disable-boot-animation2"; | 44 const char kAshDisableBootAnimation2[] = "ash-disable-boot-animation2"; |
42 | 45 |
43 // Disables the limitter to throttle how quickly a user | 46 // Disables the limitter to throttle how quickly a user |
44 // can change display settings. | 47 // can change display settings. |
45 const char kAshDisableDisplayChangeLimiter[] = | 48 const char kAshDisableDisplayChangeLimiter[] = |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
119 | 122 |
120 #if defined(OS_WIN) | 123 #if defined(OS_WIN) |
121 // Force Ash to open its root window on the desktop, even on Windows 8 where | 124 // Force Ash to open its root window on the desktop, even on Windows 8 where |
122 // it would normally end up in metro. | 125 // it would normally end up in metro. |
123 const char kForceAshToDesktop[] = "ash-force-desktop"; | 126 const char kForceAshToDesktop[] = "ash-force-desktop"; |
124 ; | 127 ; |
125 #endif | 128 #endif |
126 | 129 |
127 } // namespace switches | 130 } // namespace switches |
128 } // namespace ash | 131 } // namespace ash |
OLD | NEW |