Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(112)

Side by Side Diff: ash/ash_switches.cc

Issue 14678004: cros: Enable new cras audio handler by default (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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. 51 // Disables creating a launcher per display.
52 const char kAshDisableLauncherPerDisplay[] = "ash-disable-launcher-per-display"; 52 const char kAshDisableLauncherPerDisplay[] = "ash-disable-launcher-per-display";
53 53
54 // Disable the new cras audio handler.
55 const char kAshDisableNewAudioHandler[] = "ash-disable-new-audio-handler";
56
54 // If present new lock animations are enabled. 57 // If present new lock animations are enabled.
55 const char kAshDisableNewLockAnimations[] = "ash-disable-new-lock-animations"; 58 const char kAshDisableNewLockAnimations[] = "ash-disable-new-lock-animations";
56 59
57 // Disable new network handlers in the status area. 60 // Disable new network handlers in the status area.
58 const char kAshDisableNewNetworkStatusArea[] = 61 const char kAshDisableNewNetworkStatusArea[] =
59 "ash-disable-new-network-status-area"; 62 "ash-disable-new-network-status-area";
60 63
61 // Disable the per application grouping version of the launcher. 64 // Disable the per application grouping version of the launcher.
62 const char kAshDisablePerAppLauncher[] = "ash-disable-per-app-launcher"; 65 const char kAshDisablePerAppLauncher[] = "ash-disable-per-app-launcher";
63 66
64 // Disables display rotation. 67 // Disables display rotation.
65 const char kAshDisableDisplayRotation[] = "ash-disable-display-rotation"; 68 const char kAshDisableDisplayRotation[] = "ash-disable-display-rotation";
66 69
67 // Disable immersive fullscreen mode, regardless of default setting. 70 // Disable immersive fullscreen mode, regardless of default setting.
68 const char kAshDisableImmersiveFullscreen[] = 71 const char kAshDisableImmersiveFullscreen[] =
69 "ash-disable-immersive-fullscreen"; 72 "ash-disable-immersive-fullscreen";
70 73
71 // Disables ui scaling. 74 // Disables ui scaling.
72 const char kAshDisableUIScaling[] = "ash-disable-ui-scaling"; 75 const char kAshDisableUIScaling[] = "ash-disable-ui-scaling";
73 76
77 // Extend the status tray volume item to allow the user to choose an audio
78 // input and output device.
79 const char kAshEnableAudioDeviceMenu[] =
80 "ash-enable-audio-device-menu";
81
74 // Enable advanced gestures (e.g. for window management). 82 // Enable advanced gestures (e.g. for window management).
75 const char kAshEnableAdvancedGestures[] = "ash-enable-advanced-gestures"; 83 const char kAshEnableAdvancedGestures[] = "ash-enable-advanced-gestures";
76 84
77 // Always enable brightness control. Used by machines that don't report their 85 // Always enable brightness control. Used by machines that don't report their
78 // main monitor as internal. 86 // main monitor as internal.
79 const char kAshEnableBrightnessControl[] = "ash-enable-brightness-control"; 87 const char kAshEnableBrightnessControl[] = "ash-enable-brightness-control";
80 88
81 // Enable the new audio handler.
82 const char kAshEnableNewAudioHandler[] = "ash-enable-new-audio-handler";
83
84 // Enable immersive fullscreen mode, regardless of default setting. 89 // Enable immersive fullscreen mode, regardless of default setting.
85 const char kAshEnableImmersiveFullscreen[] = "ash-enable-immersive-fullscreen"; 90 const char kAshEnableImmersiveFullscreen[] = "ash-enable-immersive-fullscreen";
86 91
87 #if defined(OS_LINUX) 92 #if defined(OS_LINUX)
88 // Enable memory monitoring. 93 // Enable memory monitoring.
89 const char kAshEnableMemoryMonitor[] = "ash-enable-memory-monitor"; 94 const char kAshEnableMemoryMonitor[] = "ash-enable-memory-monitor";
90 #endif 95 #endif
91 96
92 // Enables the Oak tree viewer. 97 // Enables the Oak tree viewer.
93 const char kAshEnableOak[] = "ash-enable-oak"; 98 const char kAshEnableOak[] = "ash-enable-oak";
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 139
135 #if defined(OS_WIN) 140 #if defined(OS_WIN)
136 // Force Ash to open its root window on the desktop, even on Windows 8 where 141 // Force Ash to open its root window on the desktop, even on Windows 8 where
137 // it would normally end up in metro. 142 // it would normally end up in metro.
138 const char kForceAshToDesktop[] = "ash-force-desktop"; 143 const char kForceAshToDesktop[] = "ash-force-desktop";
139 ; 144 ;
140 #endif 145 #endif
141 146
142 } // namespace switches 147 } // namespace switches
143 } // namespace ash 148 } // namespace ash
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698