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 28 matching lines...) Expand all Loading... |
39 | 39 |
40 // Disables boot animation v2, go back to v1. | 40 // Disables boot animation v2, go back to v1. |
41 const char kAshDisableBootAnimation2[] = "ash-disable-boot-animation2"; | 41 const char kAshDisableBootAnimation2[] = "ash-disable-boot-animation2"; |
42 | 42 |
43 // Disables panel fitting (used for mirror mode). | 43 // Disables panel fitting (used for mirror mode). |
44 const char kAshDisablePanelFitting[] = "ash-disable-panel-fitting"; | 44 const char kAshDisablePanelFitting[] = "ash-disable-panel-fitting"; |
45 | 45 |
46 // Enable advanced gestures (e.g. for window management). | 46 // Enable advanced gestures (e.g. for window management). |
47 const char kAshEnableAdvancedGestures[] = "ash-enable-advanced-gestures"; | 47 const char kAshEnableAdvancedGestures[] = "ash-enable-advanced-gestures"; |
48 | 48 |
| 49 // Enable workspace switching via a three finger scroll. |
| 50 const char kAshEnableWorkspaceScrubbing[] = "ash-enable-workspace-scrubbing"; |
| 51 |
49 #if defined(OS_LINUX) | 52 #if defined(OS_LINUX) |
50 // Enable memory monitoring. | 53 // Enable memory monitoring. |
51 const char kAshEnableMemoryMonitor[] = "ash-enable-memory-monitor"; | 54 const char kAshEnableMemoryMonitor[] = "ash-enable-memory-monitor"; |
52 #endif | 55 #endif |
53 | 56 |
54 // Enables the Oak tree viewer. | 57 // Enables the Oak tree viewer. |
55 const char kAshEnableOak[] = "ash-enable-oak"; | 58 const char kAshEnableOak[] = "ash-enable-oak"; |
56 | 59 |
57 // Enables showing the tray bubble by dragging on the shelf. | 60 // Enables showing the tray bubble by dragging on the shelf. |
58 const char kAshEnableTrayDragging[] = "ash-enable-tray-dragging"; | 61 const char kAshEnableTrayDragging[] = "ash-enable-tray-dragging"; |
(...skipping 24 matching lines...) Expand all Loading... |
83 // Standard hardware reports releases immediately after presses. If set, we | 86 // Standard hardware reports releases immediately after presses. If set, we |
84 // 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 |
85 // instead of displaying an interactive animation. | 88 // instead of displaying an interactive animation. |
86 const char kAuraLegacyPowerButton[] = "aura-legacy-power-button"; | 89 const char kAuraLegacyPowerButton[] = "aura-legacy-power-button"; |
87 | 90 |
88 // Avoid drawing drop shadows under windows. | 91 // Avoid drawing drop shadows under windows. |
89 const char kAuraNoShadows[] = "aura-no-shadows"; | 92 const char kAuraNoShadows[] = "aura-no-shadows"; |
90 | 93 |
91 } // namespace switches | 94 } // namespace switches |
92 } // namespace ash | 95 } // namespace ash |
OLD | NEW |