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 #include "base/command_line.h" | 7 #include "base/command_line.h" |
8 | 8 |
9 namespace ash { | 9 namespace ash { |
10 namespace switches { | 10 namespace switches { |
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
120 | 120 |
121 #if defined(OS_CHROMEOS) | 121 #if defined(OS_CHROMEOS) |
122 // Enables key bindings to scroll magnified screen. | 122 // Enables key bindings to scroll magnified screen. |
123 const char kAshEnableMagnifierKeyScroller[] = | 123 const char kAshEnableMagnifierKeyScroller[] = |
124 "ash-enable-magnifier-key-scroller"; | 124 "ash-enable-magnifier-key-scroller"; |
125 | 125 |
126 // Enables the multi user icons in the system tray. | 126 // Enables the multi user icons in the system tray. |
127 const char kAshEnableMultiUserTray[] = "ash-enable-multi-user-tray"; | 127 const char kAshEnableMultiUserTray[] = "ash-enable-multi-user-tray"; |
128 #endif | 128 #endif |
129 | 129 |
130 // Enables the Oak tree viewer. | |
131 const char kAshEnableOak[] = "ash-enable-oak"; | |
132 | |
133 // Enables software based mirroring. | 130 // Enables software based mirroring. |
134 const char kAshEnableSoftwareMirroring[] = "ash-enable-software-mirroring"; | 131 const char kAshEnableSoftwareMirroring[] = "ash-enable-software-mirroring"; |
135 | 132 |
136 // When this flag is set, system sounds will be played whether the | 133 // When this flag is set, system sounds will be played whether the |
137 // ChromeVox is enabled or not. | 134 // ChromeVox is enabled or not. |
138 const char kAshEnableSystemSounds[] = "ash-enable-system-sounds"; | 135 const char kAshEnableSystemSounds[] = "ash-enable-system-sounds"; |
139 | 136 |
140 // Enables showing the tray bubble by dragging on the shelf. | 137 // Enables showing the tray bubble by dragging on the shelf. |
141 const char kAshEnableTrayDragging[] = "ash-enable-tray-dragging"; | 138 const char kAshEnableTrayDragging[] = "ash-enable-tray-dragging"; |
142 | 139 |
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
264 | 261 |
265 #if defined(OS_CHROMEOS) | 262 #if defined(OS_CHROMEOS) |
266 bool UseUsbChargerNotification() { | 263 bool UseUsbChargerNotification() { |
267 return !CommandLine::ForCurrentProcess()-> | 264 return !CommandLine::ForCurrentProcess()-> |
268 HasSwitch(kAshDisableUsbChargerNotification); | 265 HasSwitch(kAshDisableUsbChargerNotification); |
269 } | 266 } |
270 #endif | 267 #endif |
271 | 268 |
272 } // namespace switches | 269 } // namespace switches |
273 } // namespace ash | 270 } // namespace ash |
OLD | NEW |