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 20 matching lines...) Expand all Loading... |
31 | 31 |
32 // Disables boot animation v2, go back to v1. | 32 // Disables boot animation v2, go back to v1. |
33 const char kAshDisableBootAnimation2[] = "ash-disable-boot-animation2"; | 33 const char kAshDisableBootAnimation2[] = "ash-disable-boot-animation2"; |
34 | 34 |
35 // Disables panel fitting (used for mirror mode). | 35 // Disables panel fitting (used for mirror mode). |
36 const char kAshDisablePanelFitting[] = "ash-disable-panel-fitting"; | 36 const char kAshDisablePanelFitting[] = "ash-disable-panel-fitting"; |
37 | 37 |
38 // Enable advanced gestures (e.g. for window management). | 38 // Enable advanced gestures (e.g. for window management). |
39 const char kAshEnableAdvancedGestures[] = "ash-enable-advanced-gestures"; | 39 const char kAshEnableAdvancedGestures[] = "ash-enable-advanced-gestures"; |
40 | 40 |
41 // Enable memory monitoring. | |
42 const char kAshEnableMemoryMonitor[] = "ash-enable-memory-monitor"; | |
43 | |
44 // Enables the Oak tree viewer. | 41 // Enables the Oak tree viewer. |
45 const char kAshEnableOak[] = "ash-enable-oak"; | 42 const char kAshEnableOak[] = "ash-enable-oak"; |
46 | 43 |
47 // Enables showing the tray bubble by dragging on the shelf. | 44 // Enables showing the tray bubble by dragging on the shelf. |
48 const char kAshEnableTrayDragging[] = "ash-enable-tray-dragging"; | 45 const char kAshEnableTrayDragging[] = "ash-enable-tray-dragging"; |
49 | 46 |
50 // Enables creating a launcher per display. | 47 // Enables creating a launcher per display. |
51 const char kAshLauncherPerDisplay[] = "ash-launcher-per-display"; | 48 const char kAshLauncherPerDisplay[] = "ash-launcher-per-display"; |
52 | 49 |
53 // If present new lock animations are enabled. | 50 // If present new lock animations are enabled. |
(...skipping 18 matching lines...) Expand all Loading... |
72 // Standard hardware reports releases immediately after presses. If set, we | 69 // Standard hardware reports releases immediately after presses. If set, we |
73 // lock the screen or shutdown the system immediately in response to a press | 70 // lock the screen or shutdown the system immediately in response to a press |
74 // instead of displaying an interactive animation. | 71 // instead of displaying an interactive animation. |
75 const char kAuraLegacyPowerButton[] = "aura-legacy-power-button"; | 72 const char kAuraLegacyPowerButton[] = "aura-legacy-power-button"; |
76 | 73 |
77 // Avoid drawing drop shadows under windows. | 74 // Avoid drawing drop shadows under windows. |
78 const char kAuraNoShadows[] = "aura-no-shadows"; | 75 const char kAuraNoShadows[] = "aura-no-shadows"; |
79 | 76 |
80 } // namespace switches | 77 } // namespace switches |
81 } // namespace ash | 78 } // namespace ash |
OLD | NEW |