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 30 matching lines...) Expand all Loading... |
41 "ash-enable-auto-window-placement"; | 41 "ash-enable-auto-window-placement"; |
42 | 42 |
43 // Disables boot animation v2, go back to v1. | 43 // Disables boot animation v2, go back to v1. |
44 const char kAshDisableBootAnimation2[] = "ash-disable-boot-animation2"; | 44 const char kAshDisableBootAnimation2[] = "ash-disable-boot-animation2"; |
45 | 45 |
46 // Disables the limitter to throttle how quickly a user | 46 // Disables the limitter to throttle how quickly a user |
47 // can change display settings. | 47 // can change display settings. |
48 const char kAshDisableDisplayChangeLimiter[] = | 48 const char kAshDisableDisplayChangeLimiter[] = |
49 "ash-disable-display-change-limiter"; | 49 "ash-disable-display-change-limiter"; |
50 | 50 |
51 // Disables creating a launcher per display. | |
52 const char kAshDisableLauncherPerDisplay[] = "ash-disable-launcher-per-display"; | |
53 | |
54 // Disable the new cras audio handler. | 51 // Disable the new cras audio handler. |
55 const char kAshDisableNewAudioHandler[] = "ash-disable-new-audio-handler"; | 52 const char kAshDisableNewAudioHandler[] = "ash-disable-new-audio-handler"; |
56 | 53 |
57 // If present new lock animations are enabled. | 54 // If present new lock animations are enabled. |
58 const char kAshDisableNewLockAnimations[] = "ash-disable-new-lock-animations"; | 55 const char kAshDisableNewLockAnimations[] = "ash-disable-new-lock-animations"; |
59 | 56 |
60 // Disable new network handlers in the status area. | 57 // Disable new network handlers in the status area. |
61 const char kAshDisableNewNetworkStatusArea[] = | 58 const char kAshDisableNewNetworkStatusArea[] = |
62 "ash-disable-new-network-status-area"; | 59 "ash-disable-new-network-status-area"; |
63 | 60 |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
146 | 143 |
147 // Allow items to be dragged from the app launcher list into the launcher. | 144 // Allow items to be dragged from the app launcher list into the launcher. |
148 const char kAshDragAndDropAppListToLauncher[] = | 145 const char kAshDragAndDropAppListToLauncher[] = |
149 "ash-drag-and-drop-applist-to-launcher"; | 146 "ash-drag-and-drop-applist-to-launcher"; |
150 | 147 |
151 // Enables a mode which enforces all browser & application windows to be created | 148 // Enables a mode which enforces all browser & application windows to be created |
152 // in maximized mode. | 149 // in maximized mode. |
153 const char kForcedMaximizeMode[] = "forced-maximize-mode"; | 150 const char kForcedMaximizeMode[] = "forced-maximize-mode"; |
154 } // namespace switches | 151 } // namespace switches |
155 } // namespace ash | 152 } // namespace ash |
OLD | NEW |