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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
90 | 90 |
91 // (Most) Chrome OS hardware reports ACPI power button releases correctly. | 91 // (Most) Chrome OS hardware reports ACPI power button releases correctly. |
92 // Standard hardware reports releases immediately after presses. If set, we | 92 // Standard hardware reports releases immediately after presses. If set, we |
93 // lock the screen or shutdown the system immediately in response to a press | 93 // lock the screen or shutdown the system immediately in response to a press |
94 // instead of displaying an interactive animation. | 94 // instead of displaying an interactive animation. |
95 const char kAuraLegacyPowerButton[] = "aura-legacy-power-button"; | 95 const char kAuraLegacyPowerButton[] = "aura-legacy-power-button"; |
96 | 96 |
97 // Avoid drawing drop shadows under windows. | 97 // Avoid drawing drop shadows under windows. |
98 const char kAuraNoShadows[] = "aura-no-shadows"; | 98 const char kAuraNoShadows[] = "aura-no-shadows"; |
99 | 99 |
100 // Overrides all display's orientation. The value should be one of 0 | |
101 // (normal), 1 (90 degrees clock wise), 2 (180 degrees) or 3 (270 | |
Daniel Erat
2013/01/31 22:38:29
same nits as before:
s/display's/displays'/
s/clo
oshima
2013/01/31 22:48:32
Hmm, I thought I fixed them... Thank you for the c
| |
102 // degrees clockwise). | |
103 const char kAshOverrideDisplayOrientation[] = | |
104 "ash-override-display-orientation"; | |
105 | |
100 } // namespace switches | 106 } // namespace switches |
101 } // namespace ash | 107 } // namespace ash |
OLD | NEW |