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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 // can change display settings. | 44 // can change display settings. |
45 const char kAshDisableDisplayChangeLimiter[] = | 45 const char kAshDisableDisplayChangeLimiter[] = |
46 "ash-disable-display-change-limiter"; | 46 "ash-disable-display-change-limiter"; |
47 | 47 |
48 // Disables creating a launcher per display. | 48 // Disables creating a launcher per display. |
49 const char kAshDisableLauncherPerDisplay[] = "ash-disable-launcher-per-display"; | 49 const char kAshDisableLauncherPerDisplay[] = "ash-disable-launcher-per-display"; |
50 | 50 |
51 // If present new lock animations are enabled. | 51 // If present new lock animations are enabled. |
52 const char kAshDisableNewLockAnimations[] = "ash-disable-new-lock-animations"; | 52 const char kAshDisableNewLockAnimations[] = "ash-disable-new-lock-animations"; |
53 | 53 |
| 54 // Disable new network handlers in the status area. |
| 55 const char kAshDisableNewNetworkStatusArea[] = |
| 56 "ash-disable-new-network-status-area"; |
| 57 |
54 // Disable the per application grouping version of the launcher. | 58 // Disable the per application grouping version of the launcher. |
55 const char kAshDisablePerAppLauncher[] = "ash-disable-per-app-launcher"; | 59 const char kAshDisablePerAppLauncher[] = "ash-disable-per-app-launcher"; |
56 | 60 |
57 // Disables immersive fullscreen mode. | 61 // Disables immersive fullscreen mode. |
58 const char kAshDisableImmersiveMode[] = "ash-disable-immersive-mode"; | 62 const char kAshDisableImmersiveMode[] = "ash-disable-immersive-mode"; |
59 | 63 |
60 // Enable advanced gestures (e.g. for window management). | 64 // Enable advanced gestures (e.g. for window management). |
61 const char kAshEnableAdvancedGestures[] = "ash-enable-advanced-gestures"; | 65 const char kAshEnableAdvancedGestures[] = "ash-enable-advanced-gestures"; |
62 | 66 |
63 // Always enable brightness control. Used by machines that don't report their | 67 // Always enable brightness control. Used by machines that don't report their |
64 // main monitor as internal. | 68 // main monitor as internal. |
65 const char kAshEnableBrightnessControl[] = "ash-enable-brightness-control"; | 69 const char kAshEnableBrightnessControl[] = "ash-enable-brightness-control"; |
66 | 70 |
67 // Enable the experiment to show all browser tabs in the browser menu of the | 71 // Enable the experiment to show all browser tabs in the browser menu of the |
68 // launcher. | 72 // launcher. |
69 const char kAshEnableFullBrowserListInLauncher[] = | 73 const char kAshEnableFullBrowserListInLauncher[] = |
70 "ash-enable-full-browser-list-in-launcher"; | 74 "ash-enable-full-browser-list-in-launcher"; |
71 | 75 |
72 #if defined(OS_LINUX) | 76 #if defined(OS_LINUX) |
73 // Enable memory monitoring. | 77 // Enable memory monitoring. |
74 const char kAshEnableMemoryMonitor[] = "ash-enable-memory-monitor"; | 78 const char kAshEnableMemoryMonitor[] = "ash-enable-memory-monitor"; |
75 #endif | 79 #endif |
76 | 80 |
77 // Enable new network handlers in the status area. | |
78 const char kAshEnableNewNetworkStatusArea[] = | |
79 "ash-enable-new-network-status-area"; | |
80 | |
81 // Enables the Oak tree viewer. | 81 // Enables the Oak tree viewer. |
82 const char kAshEnableOak[] = "ash-enable-oak"; | 82 const char kAshEnableOak[] = "ash-enable-oak"; |
83 | 83 |
84 // Enables showing the tray bubble by dragging on the shelf. | 84 // Enables showing the tray bubble by dragging on the shelf. |
85 const char kAshEnableTrayDragging[] = "ash-enable-tray-dragging"; | 85 const char kAshEnableTrayDragging[] = "ash-enable-tray-dragging"; |
86 | 86 |
87 // Enable workspace switching via a three finger vertical scroll. | 87 // Enable workspace switching via a three finger vertical scroll. |
88 const char kAshEnableWorkspaceScrubbing[] = "ash-enable-workspace-scrubbing"; | 88 const char kAshEnableWorkspaceScrubbing[] = "ash-enable-workspace-scrubbing"; |
89 | 89 |
90 // Sets a window size, optional position, and optional scale factor. | 90 // Sets a window size, optional position, and optional scale factor. |
(...skipping 23 matching lines...) Expand all Loading... |
114 const char kAshTouchHud[] = "ash-touch-hud"; | 114 const char kAshTouchHud[] = "ash-touch-hud"; |
115 | 115 |
116 // (Most) Chrome OS hardware reports ACPI power button releases correctly. | 116 // (Most) Chrome OS hardware reports ACPI power button releases correctly. |
117 // Standard hardware reports releases immediately after presses. If set, we | 117 // Standard hardware reports releases immediately after presses. If set, we |
118 // lock the screen or shutdown the system immediately in response to a press | 118 // lock the screen or shutdown the system immediately in response to a press |
119 // instead of displaying an interactive animation. | 119 // instead of displaying an interactive animation. |
120 const char kAuraLegacyPowerButton[] = "aura-legacy-power-button"; | 120 const char kAuraLegacyPowerButton[] = "aura-legacy-power-button"; |
121 | 121 |
122 } // namespace switches | 122 } // namespace switches |
123 } // namespace ash | 123 } // namespace ash |
OLD | NEW |