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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
75 | 75 |
76 // Specifies the layout mode and offsets for the secondary display for | 76 // Specifies the layout mode and offsets for the secondary display for |
77 // testing. The format is "<t|r|b|l>,<offset>" where t=TOP, r=RIGHT, | 77 // testing. The format is "<t|r|b|l>,<offset>" where t=TOP, r=RIGHT, |
78 // b=BOTTOM and L=LEFT. For example, 'r,-100' means the secondary display | 78 // b=BOTTOM and L=LEFT. For example, 'r,-100' means the secondary display |
79 // is positioned on the right with -100 offset. (above than primary) | 79 // is positioned on the right with -100 offset. (above than primary) |
80 const char kAshSecondaryDisplayLayout[] = "ash-secondary-display-layout"; | 80 const char kAshSecondaryDisplayLayout[] = "ash-secondary-display-layout"; |
81 | 81 |
82 // Enables the heads-up display for tracking touch points. | 82 // Enables the heads-up display for tracking touch points. |
83 const char kAshTouchHud[] = "ash-touch-hud"; | 83 const char kAshTouchHud[] = "ash-touch-hud"; |
84 | 84 |
85 // Use Google-style dialog box frames. | |
86 const char kAuraGoogleDialogFrames[] = "aura-google-dialog-frames"; | |
87 | |
88 // (Most) Chrome OS hardware reports ACPI power button releases correctly. | 85 // (Most) Chrome OS hardware reports ACPI power button releases correctly. |
89 // Standard hardware reports releases immediately after presses. If set, we | 86 // Standard hardware reports releases immediately after presses. If set, we |
90 // lock the screen or shutdown the system immediately in response to a press | 87 // lock the screen or shutdown the system immediately in response to a press |
91 // instead of displaying an interactive animation. | 88 // instead of displaying an interactive animation. |
92 const char kAuraLegacyPowerButton[] = "aura-legacy-power-button"; | 89 const char kAuraLegacyPowerButton[] = "aura-legacy-power-button"; |
93 | 90 |
94 // Avoid drawing drop shadows under windows. | 91 // Avoid drawing drop shadows under windows. |
95 const char kAuraNoShadows[] = "aura-no-shadows"; | 92 const char kAuraNoShadows[] = "aura-no-shadows"; |
96 | 93 |
97 } // namespace switches | 94 } // namespace switches |
98 } // namespace ash | 95 } // namespace ash |
OLD | NEW |