blob: c64b090cff8a3dfc5aa1fcb16a6ffa79a453dc73 [file] [log] [blame]
Torne (Richard Coles)58218062012-11-14 11:43:16 +00001// 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
Torne (Richard Coles)a93a17c2013-05-15 11:34:50 +01007#include "base/command_line.h"
8
Torne (Richard Coles)58218062012-11-14 11:43:16 +00009namespace ash {
10namespace 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).
17const char kAshAnimateFromBootSplashScreen[] =
18 "ash-animate-from-boot-splash-screen";
19
Torne (Richard Coles)58218062012-11-14 11:43:16 +000020// Constrains the pointer movement within a root window on desktop.
21const 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.
27const char kAshCopyHostBackgroundAtBoot[] = "ash-copy-host-background-at-boot";
28
29// Enable keyboard shortcuts useful for debugging.
30const char kAshDebugShortcuts[] = "ash-debug-shortcuts";
31
Ben Murdoch7dbb3d52013-07-17 14:55:54 +010032// UI to show preferred networks in the status area (for testing).
33const char kAshDebugShowPreferredNetworks[] =
34 "ash-debug-show-preferred-networks";
35
Ben Murdocheb525c52013-07-10 11:40:50 +010036// Default wallpaper to use in guest mode (as paths to trusted,
37// non-user-writable JPEG files).
38const char kAshDefaultGuestWallpaperLarge[] =
39 "ash-default-guest-wallpaper-large";
40const char kAshDefaultGuestWallpaperSmall[] =
41 "ash-default-guest-wallpaper-small";
42
43// Default wallpaper to use (as paths to trusted, non-user-writable JPEG files).
44const char kAshDefaultWallpaperLarge[] = "ash-default-wallpaper-large";
45const char kAshDefaultWallpaperSmall[] = "ash-default-wallpaper-small";
46
Torne (Richard Coles)58537e22013-09-12 12:10:22 +010047// Use the normal visual style for the caption buttons (minimize, maximize,
48// restore, close).
49const char kAshDisableAlternateFrameCaptionButtonStyle[] =
50 "ash-disable-alternate-caption-button";
51
52// Disable the alternate shelf layout.
53const char kAshDisableAlternateShelfLayout[] =
54 "ash-disable-alternate-shelf-layout";
55
Ben Murdochca12bfa2013-07-23 11:17:05 +010056#if defined(OS_CHROMEOS)
57// Disable the status tray volume menu for allowing the user to choose an audio
58// input and output device.
59const char kAshDisableAudioDeviceMenu[] =
60 "ash-disable-audio-device-menu";
61#endif
62
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +010063// Disable auto window maximization logic.
64const char kAshDisableAutoMaximizing[] = "ash-disable-auto-maximizing";
65
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +000066// Disables the limitter to throttle how quickly a user
67// can change display settings.
68const char kAshDisableDisplayChangeLimiter[] =
69 "ash-disable-display-change-limiter";
70
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +000071// If present new lock animations are enabled.
72const char kAshDisableNewLockAnimations[] = "ash-disable-new-lock-animations";
73
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +010074// Disable immersive fullscreen mode, regardless of default setting.
75const char kAshDisableImmersiveFullscreen[] =
76 "ash-disable-immersive-fullscreen";
77
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +010078#if defined(OS_CHROMEOS)
79// Disable compositor based mirroring.
80const char kAshDisableSoftwareMirroring[] = "ash-disable-software-mirroring";
Ben Murdocheb525c52013-07-10 11:40:50 +010081
82// Disable the notification when a low-power USB charger is connected.
83const char kAshDisableUsbChargerNotification[] =
84 "ash-disable-usb-charger-notification";
Ben Murdoch58e6fbe2013-07-26 10:20:38 +010085
86// TODO(jamescook): Remove this unused flag. It exists only to allow the
87// "Enable audio device menu" about:flags item to have the tri-state
88// default/enabled/disabled UI.
89const char kAshEnableAudioDeviceMenu[] = "ash-enable-audio-device-menu";
90#endif // defined(OS_CHROMEOS)
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +010091
Torne (Richard Coles)58218062012-11-14 11:43:16 +000092// Enable advanced gestures (e.g. for window management).
93const char kAshEnableAdvancedGestures[] = "ash-enable-advanced-gestures";
94
Torne (Richard Coles)58537e22013-09-12 12:10:22 +010095// Use alternate visual style for the caption buttons (minimize, maximize,
96// restore, close). The alternate style:
97// - Adds a dedicated button for minimize.
98// - Increases the height of the maximized header.
99// - Removes the maximize button's help bubble.
100// - Switches snapping a window left/right to be always 50%.
101const char kAshEnableAlternateFrameCaptionButtonStyle[] =
102 "ash-enable-alternate-caption-button";
103
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000104// Always enable brightness control. Used by machines that don't report their
105// main monitor as internal.
106const char kAshEnableBrightnessControl[] = "ash-enable-brightness-control";
107
Torne (Richard Coles)7d4cd472013-06-19 11:58:07 +0100108// Enable the dock area on a desktop.
109const char kAshEnableDockedWindows[] = "ash-enable-docked-windows";
110
Torne (Richard Coles)58537e22013-09-12 12:10:22 +0100111// Disable dragging items off the shelf to unpin them.
112const char kAshDisableDragOffShelf[] = "ash-disable-drag-off-shelf";
Torne (Richard Coles)424c4d72013-08-30 15:14:49 +0100113
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +0100114// Enable immersive fullscreen mode, regardless of default setting.
115const char kAshEnableImmersiveFullscreen[] = "ash-enable-immersive-fullscreen";
116
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000117#if defined(OS_LINUX)
118// Enable memory monitoring.
119const char kAshEnableMemoryMonitor[] = "ash-enable-memory-monitor";
120#endif
Torne (Richard Coles)68043e12013-09-26 13:24:57 +0100121#if defined(OS_CHROMEOS)
122// Enable the shelf menu for multi profile usage.
123const char kAshEnableMultiProfileShelfMenu[] = "ash-enable-multi-profile-shelf";
124#endif
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000125// Enables the Oak tree viewer.
126const char kAshEnableOak[] = "ash-enable-oak";
127
Torne (Richard Coles)68043e12013-09-26 13:24:57 +0100128// Enables overview mode for window switching.
129const char kAshEnableOverviewMode[] = "ash-enable-overview-mode";
130
131// Enables software based mirroring.
132const char kAshEnableSoftwareMirroring[] = "ash-enable-software-mirroring";
Torne (Richard Coles)a36e5922013-08-05 13:57:33 +0100133
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +0100134// Enables "sticky" edges instead of "snap-to-edge"
135const char kAshEnableStickyEdges[] = "ash-enable-sticky-edges";
136
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000137// Enables showing the tray bubble by dragging on the shelf.
138const char kAshEnableTrayDragging[] = "ash-enable-tray-dragging";
139
Torne (Richard Coles)90dce4d2013-05-29 14:40:03 +0100140// Forces chrome to use mirror mode when an external display is connected.
141const char kAshForceMirrorMode[] = "ash-force-mirror-mode";
142
Torne (Richard Coles)7d4cd472013-06-19 11:58:07 +0100143// Hides notifications that are irrelevant to Chrome OS device factory testing,
144// such as battery level updates.
145const char kAshHideNotificationsForFactory[] =
146 "ash-hide-notifications-for-factory";
147
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000148// 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.
152const char kAshHostWindowBounds[] = "ash-host-window-bounds";
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000153
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000154// Hides the small tab indicators at the top of the screen during immersive
155// fullscreen mode.
156const char kAshImmersiveHideTabIndicators[] =
157 "ash-immersive-hide-tab-indicators";
158
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000159// Specifies the layout mode and offsets for the secondary display for
160// testing. The format is "<t|r|b|l>,<offset>" where t=TOP, r=RIGHT,
161// b=BOTTOM and L=LEFT. For example, 'r,-100' means the secondary display
162// is positioned on the right with -100 offset. (above than primary)
163const char kAshSecondaryDisplayLayout[] = "ash-secondary-display-layout";
164
165// Enables the heads-up display for tracking touch points.
166const char kAshTouchHud[] = "ash-touch-hud";
167
Torne (Richard Coles)7d4cd472013-06-19 11:58:07 +0100168// Use alternate layout of the shelf for testing a new look and feel:
169// Slightly smaller profile, only 2 states for the "bar highlight" on
170// launcher buttons, app list icon with more visible state indication,
171// app list icon repositionable and defaulting as 1st item in shelf,
172// more visible state indication for background on status area.
173// crbug's [244983, 244990, 244994, 245005, 245012]
174const char kAshUseAlternateShelfLayout[] = "ash-use-alternate-shelf";
175
Torne (Richard Coles)3551c9c2013-08-23 16:39:15 +0100176// Flags explicitly show or hide the shelf alignment menu.
177const char kShowShelfAlignmentMenu[] = "show-launcher-alignment-menu";
178const char kHideShelfAlignmentMenu[] = "hide-launcher-alignment-menu";
179
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +0100180// Uses the 1st display in --ash-host-window-bounds as internal display.
181// This is for debugging on linux desktop.
182const char kAshUseFirstDisplayAsInternal[] =
183 "ash-use-first-display-as-internal";
184
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000185// (Most) Chrome OS hardware reports ACPI power button releases correctly.
186// Standard hardware reports releases immediately after presses. If set, we
187// lock the screen or shutdown the system immediately in response to a press
188// instead of displaying an interactive animation.
189const char kAuraLegacyPowerButton[] = "aura-legacy-power-button";
190
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000191#if defined(OS_WIN)
192// Force Ash to open its root window on the desktop, even on Windows 8 where
193// it would normally end up in metro.
194const char kForceAshToDesktop[] = "ash-force-desktop";
Torne (Richard Coles)b2df76e2013-05-13 16:52:09 +0100195
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000196#endif
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000197
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +0100198// Disallow items to be dragged from the app launcher list into the launcher.
199const char kAshDisableDragAndDropAppListToLauncher[] =
200 "ash-disable-drag-and-drop-applist-to-launcher";
Torne (Richard Coles)b2df76e2013-05-13 16:52:09 +0100201
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +0100202// Enables a mode which enforces all browser & application windows to be created
203// in maximized mode.
204const char kForcedMaximizeMode[] = "forced-maximize-mode";
Torne (Richard Coles)a93a17c2013-05-15 11:34:50 +0100205
Torne (Richard Coles)58537e22013-09-12 12:10:22 +0100206bool UseAlternateFrameCaptionButtonStyle() {
Ben Murdochca12bfa2013-07-23 11:17:05 +0100207 return CommandLine::ForCurrentProcess()->
Torne (Richard Coles)58537e22013-09-12 12:10:22 +0100208 HasSwitch(kAshEnableAlternateFrameCaptionButtonStyle);
209}
210
211bool UseAlternateShelfLayout() {
212 return !CommandLine::ForCurrentProcess()->
213 HasSwitch(kAshDisableAlternateShelfLayout);
Torne (Richard Coles)3551c9c2013-08-23 16:39:15 +0100214}
215
Torne (Richard Coles)424c4d72013-08-30 15:14:49 +0100216bool UseDragOffShelf() {
Torne (Richard Coles)58537e22013-09-12 12:10:22 +0100217 return !CommandLine::ForCurrentProcess()->
218 HasSwitch(kAshDisableDragOffShelf);
Torne (Richard Coles)424c4d72013-08-30 15:14:49 +0100219}
220
Torne (Richard Coles)3551c9c2013-08-23 16:39:15 +0100221bool ShowShelfAlignmentMenu() {
Torne (Richard Coles)58537e22013-09-12 12:10:22 +0100222 return !CommandLine::ForCurrentProcess()->
223 HasSwitch(kHideShelfAlignmentMenu);
Ben Murdochca12bfa2013-07-23 11:17:05 +0100224}
225
Torne (Richard Coles)68043e12013-09-26 13:24:57 +0100226// Returns true if the MultiProfile shelf menu should be shown.
227bool ShowMultiProfileShelfMenu() {
228#if defined(OS_CHROMEOS)
229 return CommandLine::ForCurrentProcess()->
230 HasSwitch(kAshEnableMultiProfileShelfMenu);
231#else
232 return false;
233#endif
234}
235
Ben Murdochca12bfa2013-07-23 11:17:05 +0100236#if defined(OS_CHROMEOS)
Torne (Richard Coles)a93a17c2013-05-15 11:34:50 +0100237bool ShowAudioDeviceMenu() {
Torne (Richard Coles)a36e5922013-08-05 13:57:33 +0100238 return !CommandLine::ForCurrentProcess()->
Torne (Richard Coles)58537e22013-09-12 12:10:22 +0100239 HasSwitch(kAshDisableAudioDeviceMenu);
Torne (Richard Coles)a93a17c2013-05-15 11:34:50 +0100240}
241
Ben Murdocheb525c52013-07-10 11:40:50 +0100242bool UseUsbChargerNotification() {
243 return !CommandLine::ForCurrentProcess()->
Torne (Richard Coles)58537e22013-09-12 12:10:22 +0100244 HasSwitch(kAshDisableUsbChargerNotification);
Ben Murdocheb525c52013-07-10 11:40:50 +0100245}
246#endif
247
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000248} // namespace switches
249} // namespace ash