Chromium Code Reviews| 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 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 117 // (Most) Chrome OS hardware reports ACPI power button releases correctly. | 117 // (Most) Chrome OS hardware reports ACPI power button releases correctly. |
| 118 // Standard hardware reports releases immediately after presses. If set, we | 118 // Standard hardware reports releases immediately after presses. If set, we |
| 119 // lock the screen or shutdown the system immediately in response to a press | 119 // lock the screen or shutdown the system immediately in response to a press |
| 120 // instead of displaying an interactive animation. | 120 // instead of displaying an interactive animation. |
| 121 const char kAuraLegacyPowerButton[] = "aura-legacy-power-button"; | 121 const char kAuraLegacyPowerButton[] = "aura-legacy-power-button"; |
| 122 | 122 |
| 123 #if defined(OS_WIN) | 123 #if defined(OS_WIN) |
| 124 // 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 |
| 125 // it would normally end up in metro. | 125 // it would normally end up in metro. |
| 126 const char kForceAshToDesktop[] = "ash-force-desktop"; | 126 const char kForceAshToDesktop[] = "ash-force-desktop"; |
| 127 ; | |
| 128 #endif | 127 #endif |
| 129 | 128 |
| 129 // Enables a mode which enforces all browser & application windows to be created | |
| 130 // in maximized mode. | |
| 131 const char kForceMaximizeMode[] = "force_maximize_mode"; | |
|
James Cook
2013/04/22 22:15:46
force_maximize_mode -> force-maximize-mode
Mr4D (OOO till 08-26)
2013/04/23 04:41:28
Done.
| |
| 132 | |
| 130 } // namespace switches | 133 } // namespace switches |
| 131 } // namespace ash | 134 } // namespace ash |
| OLD | NEW |