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 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
123 // (Most) Chrome OS hardware reports ACPI power button releases correctly. | 123 // (Most) Chrome OS hardware reports ACPI power button releases correctly. |
124 // Standard hardware reports releases immediately after presses. If set, we | 124 // Standard hardware reports releases immediately after presses. If set, we |
125 // lock the screen or shutdown the system immediately in response to a press | 125 // lock the screen or shutdown the system immediately in response to a press |
126 // instead of displaying an interactive animation. | 126 // instead of displaying an interactive animation. |
127 const char kAuraLegacyPowerButton[] = "aura-legacy-power-button"; | 127 const char kAuraLegacyPowerButton[] = "aura-legacy-power-button"; |
128 | 128 |
129 #if defined(OS_WIN) | 129 #if defined(OS_WIN) |
130 // Force Ash to open its root window on the desktop, even on Windows 8 where | 130 // Force Ash to open its root window on the desktop, even on Windows 8 where |
131 // it would normally end up in metro. | 131 // it would normally end up in metro. |
132 const char kForceAshToDesktop[] = "ash-force-desktop"; | 132 const char kForceAshToDesktop[] = "ash-force-desktop"; |
133 ; | |
134 #endif | 133 #endif |
135 | 134 |
| 135 // Enables a mode which enforces all browser & application windows to be created |
| 136 // in maximized mode. |
| 137 const char kForcedMaximizeMode[] = "forced-maximize-mode"; |
| 138 |
136 } // namespace switches | 139 } // namespace switches |
137 } // namespace ash | 140 } // namespace ash |
OLD | NEW |