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 // Variation of boot animation that uses Tween::EASE_OUT_2. | 10 // Variation of boot animation that uses Tween::EASE_OUT_2. |
(...skipping 19 matching lines...) Expand all Loading... |
30 | 30 |
31 // Enables the Oak tree viewer. | 31 // Enables the Oak tree viewer. |
32 const char kAshEnableOak[] = "ash-enable-oak"; | 32 const char kAshEnableOak[] = "ash-enable-oak"; |
33 | 33 |
34 // Enables showing the tray bubble by dragging on the shelf. | 34 // Enables showing the tray bubble by dragging on the shelf. |
35 const char kAshEnableTrayDragging[] = "ash-enable-tray-dragging"; | 35 const char kAshEnableTrayDragging[] = "ash-enable-tray-dragging"; |
36 | 36 |
37 // Enables creating a launcher per display. | 37 // Enables creating a launcher per display. |
38 const char kAshLauncherPerDisplay[] = "ash-launcher-per-display"; | 38 const char kAshLauncherPerDisplay[] = "ash-launcher-per-display"; |
39 | 39 |
| 40 // If present new lock animations are enabled. |
| 41 const char kAshNewLockAnimationsEnabled[] = "ash-new-lock-animations-enabled"; |
| 42 |
| 43 // If present new lock animations are disabled. |
| 44 const char kAshNewLockAnimationsDisabled[] = "ash-new-lock-animations-disabled"; |
| 45 |
40 // Specifies the layout mode and offsets for the secondary display for | 46 // Specifies the layout mode and offsets for the secondary display for |
41 // testing. The format is "<t|r|b|l>,<offset>" where t=TOP, r=RIGHT, | 47 // testing. The format is "<t|r|b|l>,<offset>" where t=TOP, r=RIGHT, |
42 // b=BOTTOM and L=LEFT. For example, 'r,-100' means the secondary display | 48 // b=BOTTOM and L=LEFT. For example, 'r,-100' means the secondary display |
43 // is positioned on the right with -100 offset. (above than primary) | 49 // is positioned on the right with -100 offset. (above than primary) |
44 const char kAshSecondaryDisplayLayout[] = "ash-secondary-display-layout"; | 50 const char kAshSecondaryDisplayLayout[] = "ash-secondary-display-layout"; |
45 | 51 |
46 // Enables the heads-up display for tracking touch points. | 52 // Enables the heads-up display for tracking touch points. |
47 const char kAshTouchHud[] = "ash-touch-hud"; | 53 const char kAshTouchHud[] = "ash-touch-hud"; |
48 | 54 |
49 // If present animations are disabled. | 55 // If present animations are disabled. |
50 const char kAshWindowAnimationsDisabled[] = "ash-window-animations-disabled"; | 56 const char kAshWindowAnimationsDisabled[] = "ash-window-animations-disabled"; |
51 | 57 |
52 // Use Google-style dialog box frames. | 58 // Use Google-style dialog box frames. |
53 const char kAuraGoogleDialogFrames[] = "aura-google-dialog-frames"; | 59 const char kAuraGoogleDialogFrames[] = "aura-google-dialog-frames"; |
54 | 60 |
55 // (Most) Chrome OS hardware reports ACPI power button releases correctly. | 61 // (Most) Chrome OS hardware reports ACPI power button releases correctly. |
56 // Standard hardware reports releases immediately after presses. If set, we | 62 // Standard hardware reports releases immediately after presses. If set, we |
57 // lock the screen or shutdown the system immediately in response to a press | 63 // lock the screen or shutdown the system immediately in response to a press |
58 // instead of displaying an interactive animation. | 64 // instead of displaying an interactive animation. |
59 const char kAuraLegacyPowerButton[] = "aura-legacy-power-button"; | 65 const char kAuraLegacyPowerButton[] = "aura-legacy-power-button"; |
60 | 66 |
61 // Avoid drawing drop shadows under windows. | 67 // Avoid drawing drop shadows under windows. |
62 const char kAuraNoShadows[] = "aura-no-shadows"; | 68 const char kAuraNoShadows[] = "aura-no-shadows"; |
63 | 69 |
64 } // namespace switches | 70 } // namespace switches |
65 } // namespace ash | 71 } // namespace ash |
OLD | NEW |