blob: 48b0e93673def995699b59941f3b5fbc92d8899d [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
Torne (Richard Coles)f2477e02013-11-28 11:55:43 +000032// Indicates that the wallpaper images specified by
33// kAshDefaultWallpaper{Large,Small} are OEM-specific (i.e. they are not
34// downloadable from Google).
35const char kAshDefaultWallpaperIsOem[] = "ash-default-wallpaper-is-oem";
36
Ben Murdocheb525c52013-07-10 11:40:50 +010037// Default wallpaper to use (as paths to trusted, non-user-writable JPEG files).
38const char kAshDefaultWallpaperLarge[] = "ash-default-wallpaper-large";
39const char kAshDefaultWallpaperSmall[] = "ash-default-wallpaper-small";
40
Torne (Richard Coles)46d4c2b2014-06-09 12:00:27 +010041// Disables LockLayoutManager used for LockScreenContainer, return back to
42// WorkspaceLayoutManager.
43const char kAshDisableLockLayoutManager[] = "ash-disable-lock-layout-manager";
44
Torne (Richard Coles)cedac222014-06-03 10:58:34 +010045// Disable the Touch Exploration Mode. Touch Exploration Mode will no longer be
46// turned on automatically when spoken feedback is enabled when this flag is
47// set.
48const char kAshDisableTouchExplorationMode[] =
49 "ash-disable-touch-exploration-mode";
Torne (Richard Coles)58537e22013-09-12 12:10:22 +010050
Torne (Richard Coles)f2477e02013-11-28 11:55:43 +000051#if defined(OS_CHROMEOS)
Torne (Richard Coles)5d1f7b12014-02-21 12:16:55 +000052// Enables key bindings to scroll magnified screen.
53const char kAshEnableMagnifierKeyScroller[] =
54 "ash-enable-magnifier-key-scroller";
Torne (Richard Coles)f2477e02013-11-28 11:55:43 +000055#endif
56
Torne (Richard Coles)68043e12013-09-26 13:24:57 +010057// Enables software based mirroring.
58const char kAshEnableSoftwareMirroring[] = "ash-enable-software-mirroring";
Torne (Richard Coles)a36e5922013-08-05 13:57:33 +010059
Torne (Richard Coles)a1401312014-03-18 10:20:56 +000060// Enables touch view testing.
Ben Murdochc5cede92014-04-10 11:22:14 +010061// TODO(skuhne): Remove TOGGLE_TOUCH_VIEW_TESTING accelerator once this
62// flag is removed.
Torne (Richard Coles)a1401312014-03-18 10:20:56 +000063const char kAshEnableTouchViewTesting[] = "ash-enable-touch-view-testing";
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +010064
Torne (Richard Coles)5d1f7b12014-02-21 12:16:55 +000065// When this flag is set, system sounds will be played whether the
66// ChromeVox is enabled or not.
67const char kAshEnableSystemSounds[] = "ash-enable-system-sounds";
68
Torne (Richard Coles)58218062012-11-14 11:43:16 +000069// Enables showing the tray bubble by dragging on the shelf.
70const char kAshEnableTrayDragging[] = "ash-enable-tray-dragging";
71
Torne (Richard Coles)4e180b62013-10-18 15:46:22 +010072// Wallpaper to use in guest mode (as paths to trusted, non-user-writable JPEG
73// files).
74const char kAshGuestWallpaperLarge[] = "ash-guest-wallpaper-large";
75const char kAshGuestWallpaperSmall[] = "ash-guest-wallpaper-small";
76
Torne (Richard Coles)7d4cd472013-06-19 11:58:07 +010077// Hides notifications that are irrelevant to Chrome OS device factory testing,
78// such as battery level updates.
79const char kAshHideNotificationsForFactory[] =
80 "ash-hide-notifications-for-factory";
81
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +000082// Sets a window size, optional position, and optional scale factor.
83// "1024x768" creates a window of size 1024x768.
84// "100+200-1024x768" positions the window at 100,200.
85// "1024x768*2" sets the scale factor to 2 for a high DPI display.
86const char kAshHostWindowBounds[] = "ash-host-window-bounds";
Torne (Richard Coles)58218062012-11-14 11:43:16 +000087
Torne (Richard Coles)58218062012-11-14 11:43:16 +000088// Specifies the layout mode and offsets for the secondary display for
89// testing. The format is "<t|r|b|l>,<offset>" where t=TOP, r=RIGHT,
90// b=BOTTOM and L=LEFT. For example, 'r,-100' means the secondary display
91// is positioned on the right with -100 offset. (above than primary)
92const char kAshSecondaryDisplayLayout[] = "ash-secondary-display-layout";
93
94// Enables the heads-up display for tracking touch points.
95const char kAshTouchHud[] = "ash-touch-hud";
96
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +010097// Uses the 1st display in --ash-host-window-bounds as internal display.
98// This is for debugging on linux desktop.
99const char kAshUseFirstDisplayAsInternal[] =
100 "ash-use-first-display-as-internal";
101
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000102// (Most) Chrome OS hardware reports ACPI power button releases correctly.
103// Standard hardware reports releases immediately after presses. If set, we
104// lock the screen or shutdown the system immediately in response to a press
105// instead of displaying an interactive animation.
106const char kAuraLegacyPowerButton[] = "aura-legacy-power-button";
107
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000108#if defined(OS_WIN)
109// Force Ash to open its root window on the desktop, even on Windows 8 where
110// it would normally end up in metro.
111const char kForceAshToDesktop[] = "ash-force-desktop";
Torne (Richard Coles)b2df76e2013-05-13 16:52:09 +0100112
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000113#endif
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000114
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000115} // namespace switches
116} // namespace ash