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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
93 | 93 |
94 // (Most) Chrome OS hardware reports ACPI power button releases correctly. | 94 // (Most) Chrome OS hardware reports ACPI power button releases correctly. |
95 // Standard hardware reports releases immediately after presses. If set, we | 95 // Standard hardware reports releases immediately after presses. If set, we |
96 // lock the screen or shutdown the system immediately in response to a press | 96 // lock the screen or shutdown the system immediately in response to a press |
97 // instead of displaying an interactive animation. | 97 // instead of displaying an interactive animation. |
98 const char kAuraLegacyPowerButton[] = "aura-legacy-power-button"; | 98 const char kAuraLegacyPowerButton[] = "aura-legacy-power-button"; |
99 | 99 |
100 // Avoid drawing drop shadows under windows. | 100 // Avoid drawing drop shadows under windows. |
101 const char kAuraNoShadows[] = "aura-no-shadows"; | 101 const char kAuraNoShadows[] = "aura-no-shadows"; |
102 | 102 |
103 // Overrides the all display's oientation. The value should be one of 0=(normal) | |
Daniel Erat
2013/01/30 21:04:27
nit: fixing some typos and grammar:
// Overrides
oshima
2013/01/30 23:45:53
Updated the comment. I agree that it should be enu
| |
104 // 1=(90 degree clock wise), 2=(180 degree) or 3=(270 degree). | |
105 const char kAshOverrideDisplayOrientation[] = | |
106 "ash-override-display-orientation"; | |
107 | |
103 } // namespace switches | 108 } // namespace switches |
104 } // namespace ash | 109 } // namespace ash |
OLD | NEW |