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 3 // found in the LICENSE file. 4 5 #include "ash/ash_switches.h" 6 7 #include "base/command_line.h" 8 9 namespace ash { 10 namespace switches { 11 12 // Enables an animated transition from the boot splash screen (Chrome logo on a 13 // white background) to the login screen. Implies 14 // |kAshCopyHostBackgroundAtBoot| and doesn't make much sense if used in 15 // conjunction with |kDisableBootAnimation| (since the transition begins at the 16 // same time as the white/grayscale login screen animation). 17 const char kAshAnimateFromBootSplashScreen[] = 18 "ash-animate-from-boot-splash-screen"; 19 20 // Constrains the pointer movement within a root window on desktop. 21 const char kAshConstrainPointerToRoot[] = "ash-constrain-pointer-to-root"; 22 23 // Copies the host window's content to the system background layer at startup. 24 // Can make boot slightly slower, but also hides an even-longer awkward period 25 // where we display a white background if the login wallpaper takes a long time 26 // to load. 27 const char kAshCopyHostBackgroundAtBoot[] = "ash-copy-host-background-at-boot"; 28 29 // Enable keyboard shortcuts useful for debugging. 30 const char kAshDebugShortcuts[] = "ash-debug-shortcuts"; 31 32 // UI to show preferred networks in the status area (for testing). 33 const char kAshDebugShowPreferredNetworks[] = 34 "ash-debug-show-preferred-networks"; 35 36 // Indicates that the wallpaper images specified by 37 // kAshDefaultWallpaper{Large,Small} are OEM-specific (i.e. they are not 38 // downloadable from Google). 39 const char kAshDefaultWallpaperIsOem[] = "ash-default-wallpaper-is-oem"; 40 41 // Default wallpaper to use (as paths to trusted, non-user-writable JPEG files). 42 const char kAshDefaultWallpaperLarge[] = "ash-default-wallpaper-large"; 43 const char kAshDefaultWallpaperSmall[] = "ash-default-wallpaper-small"; 44 45 // Use the normal visual style for the caption buttons (minimize, maximize, 46 // restore, close). 47 const char kAshDisableAlternateFrameCaptionButtonStyle[] = 48 "ash-disable-alternate-caption-button"; 49 50 // Disable the alternate shelf layout. 51 const char kAshDisableAlternateShelfLayout[] = 52 "ash-disable-alternate-shelf-layout"; 53 54 #if defined(OS_CHROMEOS) 55 // Disable the status tray volume menu for allowing the user to choose an audio 56 // input and output device. 57 const char kAshDisableAudioDeviceMenu[] = 58 "ash-disable-audio-device-menu"; 59 #endif 60 61 // Disable auto window maximization logic. 62 const char kAshDisableAutoMaximizing[] = "ash-disable-auto-maximizing"; 63 64 // Disables the limitter to throttle how quickly a user 65 // can change display settings. 66 const char kAshDisableDisplayChangeLimiter[] = 67 "ash-disable-display-change-limiter"; 68 69 #if defined(OS_CHROMEOS) 70 // Disable the notification when a low-power USB charger is connected. 71 const char kAshDisableUsbChargerNotification[] = 72 "ash-disable-usb-charger-notification"; 73 74 // TODO(jamescook): Remove this unused flag. It exists only to allow the 75 // "Enable audio device menu" about:flags item to have the tri-state 76 // default/enabled/disabled UI. 77 const char kAshEnableAudioDeviceMenu[] = "ash-enable-audio-device-menu"; 78 #endif // defined(OS_CHROMEOS) 79 80 // Enable advanced gestures (e.g. for window management). 81 const char kAshEnableAdvancedGestures[] = "ash-enable-advanced-gestures"; 82 83 // Use alternate visual style for the caption buttons (minimize, maximize, 84 // restore, close). The alternate style: 85 // - Adds a dedicated button for minimize. 86 // - Removes the maximize button's help bubble. 87 const char kAshEnableAlternateFrameCaptionButtonStyle[] = 88 "ash-enable-alternate-caption-button"; 89 90 // Always enable brightness control. Used by machines that don't report their 91 // main monitor as internal. 92 const char kAshEnableBrightnessControl[] = "ash-enable-brightness-control"; 93 94 // Enable ability to dock windows at the desktop edge. 95 const char kAshEnableDockedWindows[] = "ash-enable-docked-windows"; 96 97 // Disable dragging items off the shelf to unpin them. 98 const char kAshDisableDragOffShelf[] = "ash-disable-drag-off-shelf"; 99 100 // Enables putting all windows into immersive fullscreen via <F4>. 101 const char kAshEnableImmersiveFullscreenForAllWindows[] = 102 "ash-enable-immersive-all-windows"; 103 104 #if defined(OS_CHROMEOS) 105 // Enables the "full multi profile mode" - as it was in M-31. 106 const char kAshEnableFullMultiProfileMode[] = 107 "ash-enable-full-multi-profile-mode"; 108 #endif 109 110 #if defined(OS_LINUX) 111 // Enable memory monitoring. 112 const char kAshEnableMemoryMonitor[] = "ash-enable-memory-monitor"; 113 #endif 114 115 #if defined(OS_CHROMEOS) 116 // Enables the multi user icons in the system tray. 117 const char kAshEnableMultiUserTray[] = "ash-enable-multi-user-tray"; 118 #endif 119 120 // Enables the Oak tree viewer. 121 const char kAshEnableOak[] = "ash-enable-oak"; 122 123 // Disables overview mode for window switching. 124 const char kAshDisableOverviewMode[] = "ash-disable-overview-mode"; 125 126 // Enables software based mirroring. 127 const char kAshEnableSoftwareMirroring[] = "ash-enable-software-mirroring"; 128 129 // Enables "sticky" edges instead of "snap-to-edge" 130 const char kAshEnableStickyEdges[] = "ash-enable-sticky-edges"; 131 132 // Enables showing the tray bubble by dragging on the shelf. 133 const char kAshEnableTrayDragging[] = "ash-enable-tray-dragging"; 134 135 // Forces chrome to use mirror mode when an external display is connected. 136 const char kAshForceMirrorMode[] = "ash-force-mirror-mode"; 137 138 // Wallpaper to use in guest mode (as paths to trusted, non-user-writable JPEG 139 // files). 140 const char kAshGuestWallpaperLarge[] = "ash-guest-wallpaper-large"; 141 const char kAshGuestWallpaperSmall[] = "ash-guest-wallpaper-small"; 142 143 // Hides notifications that are irrelevant to Chrome OS device factory testing, 144 // such as battery level updates. 145 const char kAshHideNotificationsForFactory[] = 146 "ash-hide-notifications-for-factory"; 147 148 // Sets a window size, optional position, and optional scale factor. 149 // "1024x768" creates a window of size 1024x768. 150 // "100+200-1024x768" positions the window at 100,200. 151 // "1024x768*2" sets the scale factor to 2 for a high DPI display. 152 const char kAshHostWindowBounds[] = "ash-host-window-bounds"; 153 154 // Specifies the delay in milliseconds before beginning overview mode after 155 // getting an alt tab keypress. 156 const char kAshOverviewDelayOnAltTab[] = "ash-overview-delay-on-alt-tab"; 157 158 // Specifies the layout mode and offsets for the secondary display for 159 // testing. The format is "<t|r|b|l>,<offset>" where t=TOP, r=RIGHT, 160 // b=BOTTOM and L=LEFT. For example, 'r,-100' means the secondary display 161 // is positioned on the right with -100 offset. (above than primary) 162 const char kAshSecondaryDisplayLayout[] = "ash-secondary-display-layout"; 163 164 // Use the old behavior where the user can pick the width of a side maximized 165 // window. The user selects the width of the side maximized window based on how 166 // far off the edge of the work area they drag the window. 167 const char kAshMultipleSnapWindowWidths[] = "ash-multiple-snap-window-widths"; 168 169 // Enables the heads-up display for tracking touch points. 170 const char kAshTouchHud[] = "ash-touch-hud"; 171 172 // Use alternate layout of the shelf for testing a new look and feel: 173 // Slightly smaller profile, only 2 states for the "bar highlight" on 174 // launcher buttons, app list icon with more visible state indication, 175 // app list icon repositionable and defaulting as 1st item in shelf, 176 // more visible state indication for background on status area. 177 // crbug's [244983, 244990, 244994, 245005, 245012] 178 const char kAshUseAlternateShelfLayout[] = "ash-use-alternate-shelf"; 179 180 // Flags explicitly show or hide the shelf alignment menu. 181 const char kShowShelfAlignmentMenu[] = "show-launcher-alignment-menu"; 182 const char kHideShelfAlignmentMenu[] = "hide-launcher-alignment-menu"; 183 184 // Uses the 1st display in --ash-host-window-bounds as internal display. 185 // This is for debugging on linux desktop. 186 const char kAshUseFirstDisplayAsInternal[] = 187 "ash-use-first-display-as-internal"; 188 189 // (Most) Chrome OS hardware reports ACPI power button releases correctly. 190 // Standard hardware reports releases immediately after presses. If set, we 191 // lock the screen or shutdown the system immediately in response to a press 192 // instead of displaying an interactive animation. 193 const char kAuraLegacyPowerButton[] = "aura-legacy-power-button"; 194 195 #if defined(OS_WIN) 196 // Force Ash to open its root window on the desktop, even on Windows 8 where 197 // it would normally end up in metro. 198 const char kForceAshToDesktop[] = "ash-force-desktop"; 199 200 #endif 201 202 // Disallow items to be dragged from the app launcher list into the launcher. 203 const char kAshDisableDragAndDropAppListToLauncher[] = 204 "ash-disable-drag-and-drop-applist-to-launcher"; 205 206 bool UseAlternateFrameCaptionButtonStyle() { 207 // For the sake of simplicity, the alternate caption button style is only 208 // used if snapped windows are always 50% of the screen's width. 209 CommandLine* command_line = CommandLine::ForCurrentProcess(); 210 return command_line->HasSwitch(kAshEnableAlternateFrameCaptionButtonStyle) && 211 !command_line->HasSwitch(kAshMultipleSnapWindowWidths); 212 } 213 214 bool UseAlternateShelfLayout() { 215 return !CommandLine::ForCurrentProcess()-> 216 HasSwitch(kAshDisableAlternateShelfLayout); 217 } 218 219 bool UseDragOffShelf() { 220 return !CommandLine::ForCurrentProcess()-> 221 HasSwitch(kAshDisableDragOffShelf); 222 } 223 224 bool ShowShelfAlignmentMenu() { 225 return !CommandLine::ForCurrentProcess()-> 226 HasSwitch(kHideShelfAlignmentMenu); 227 } 228 229 // Returns true if the full multi profile mode (M-31 version) is active. 230 bool UseFullMultiProfileMode() { 231 #if defined(OS_CHROMEOS) 232 return CommandLine::ForCurrentProcess()-> 233 HasSwitch(kAshEnableFullMultiProfileMode); 234 #else 235 return false; 236 #endif 237 } 238 239 bool UseMultiUserTray() { 240 #if defined(OS_CHROMEOS) 241 // TODO(skuhne): If this gets removed for good, remove also 242 // |SystemTray::user_items_| and the use of it. 243 return CommandLine::ForCurrentProcess()->HasSwitch(kAshEnableMultiUserTray); 244 #else 245 return false; 246 #endif 247 } 248 249 bool UseOverviewMode() { 250 return !CommandLine::ForCurrentProcess()->HasSwitch(kAshDisableOverviewMode); 251 } 252 253 bool UseDockedWindows() { 254 return CommandLine::ForCurrentProcess()->HasSwitch(kAshEnableDockedWindows); 255 } 256 257 #if defined(OS_CHROMEOS) 258 bool ShowAudioDeviceMenu() { 259 return !CommandLine::ForCurrentProcess()-> 260 HasSwitch(kAshDisableAudioDeviceMenu); 261 } 262 263 bool UseUsbChargerNotification() { 264 return !CommandLine::ForCurrentProcess()-> 265 HasSwitch(kAshDisableUsbChargerNotification); 266 } 267 #endif 268 269 } // namespace switches 270 } // namespace ash 271