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

Side by Side Diff: ash/ash_switches.cc

Issue 14455012: 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
74 // Enable advanced gestures (e.g. for window management). 77 // Enable advanced gestures (e.g. for window management).
75 const char kAshEnableAdvancedGestures[] = "ash-enable-advanced-gestures"; 78 const char kAshEnableAdvancedGestures[] = "ash-enable-advanced-gestures";
76 79
77 // Always enable brightness control. Used by machines that don't report their 80 // Always enable brightness control. Used by machines that don't report their
78 // main monitor as internal. 81 // main monitor as internal.
79 const char kAshEnableBrightnessControl[] = "ash-enable-brightness-control"; 82 const char kAshEnableBrightnessControl[] = "ash-enable-brightness-control";
80 83
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. 84 // Enable immersive fullscreen mode, regardless of default setting.
85 const char kAshEnableImmersiveFullscreen[] = "ash-enable-immersive-fullscreen"; 85 const char kAshEnableImmersiveFullscreen[] = "ash-enable-immersive-fullscreen";
86 86
87 #if defined(OS_LINUX) 87 #if defined(OS_LINUX)
88 // Enable memory monitoring. 88 // Enable memory monitoring.
89 const char kAshEnableMemoryMonitor[] = "ash-enable-memory-monitor"; 89 const char kAshEnableMemoryMonitor[] = "ash-enable-memory-monitor";
90 #endif 90 #endif
91 91
92 // Enables the Oak tree viewer. 92 // Enables the Oak tree viewer.
93 const char kAshEnableOak[] = "ash-enable-oak"; 93 const char kAshEnableOak[] = "ash-enable-oak";
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 134
135 #if defined(OS_WIN) 135 #if defined(OS_WIN)
136 // Force Ash to open its root window on the desktop, even on Windows 8 where 136 // Force Ash to open its root window on the desktop, even on Windows 8 where
137 // it would normally end up in metro. 137 // it would normally end up in metro.
138 const char kForceAshToDesktop[] = "ash-force-desktop"; 138 const char kForceAshToDesktop[] = "ash-force-desktop";
139 ; 139 ;
140 #endif 140 #endif
141 141
142 } // namespace switches 142 } // namespace switches
143 } // namespace ash 143 } // namespace ash
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698