Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / chromeos / chromeos_switches.cc
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 "chromeos/chromeos_switches.h"
6
7 namespace chromeos {
8 namespace switches {
9
10 // Path for app's OEM manifest file.
11 const char kAppOemManifestFile[]            = "app-mode-oem-manifest";
12
13 // When wallpaper boot animation is not disabled this switch
14 // is used to override OOBE/sign in WebUI init type.
15 // Possible values: parallel|postpone. Default: parallel.
16 const char kAshWebUIInit[]                  = "ash-webui-init";
17
18 // Specifies the URL of the consumer device management backend.
19 const char kConsumerDeviceManagementUrl[]   = "consumer-device-management-url";
20
21 // Forces the stub implementation of dbus clients.
22 const char kDbusStub[] = "dbus-stub";
23
24 // Time before a machine at OOBE is considered derelict.
25 const char kDerelictDetectionTimeout[] = "derelict-detection-timeout";
26
27 // Time before a derelict machines starts demo mode.
28 const char kDerelictIdleTimeout[] = "derelict-idle-timeout";
29
30 // Disables wallpaper boot animation (except of OOBE case).
31 const char kDisableBootAnimation[]          = "disable-boot-animation";
32
33 // Disables the ChromeOS demo.
34 const char kDisableDemoMode[]               = "disable-demo-mode";
35
36 // Disables reporting recently logged in users for enterprise-managed devices.
37 const char kDisableEnterpriseUserReporting[] =
38     "disable-enterprise-user-reporting";
39
40 // Disable Genius App and use the original Help App instead.
41 const char kDisableGeniusApp[]              = "disable-genius-app";
42
43 // Avoid doing expensive animations upon login.
44 const char kDisableLoginAnimations[]        = "disable-login-animations";
45
46 // Disable new channel switcher UI.
47 const char kDisableNewChannelSwitcherUI[]   = "disable-new-channel-switcher-ui";
48
49 // Disables new Kiosk UI when kiosk apps are represented as user pods.
50 const char kDisableNewKioskUI[]             = "disable-new-kiosk-ui";
51
52 // Disable Quickoffice component app thus handlers won't be registered so
53 // it will be possible to install another version as normal app for testing.
54 const char kDisableQuickofficeComponentApp[] =
55     "disable-quickoffice-component-app";
56
57 // Disables volume adjust sound.
58 const char kDisableVolumeAdjustSound[] = "disable-volume-adjust-sound";
59
60 // Disables notifications about captive portals in session.
61 const char kDisableNetworkPortalNotification[] =
62     "disable-network-portal-notification";
63
64 // Enables overriding the path for the default echo component extension.
65 // Useful for testing.
66 const char kEchoExtensionPath[]             = "echo-ext-path";
67
68 // Enables switching between different cellular carriers from the UI.
69 const char kEnableCarrierSwitching[]        = "enable-carrier-switching";
70
71 // Enables consumer management, which allows user to enroll, remotely lock and
72 // locate the device.
73 const char kEnableConsumerManagement[]      = "enable-consumer-management";
74
75 // Enables MTP support in Files.app.
76 const char kEnableFileManagerMTP[] = "enable-filemanager-mtp";
77
78 // Enable explicit HID detection on OOBE.
79 const char kEnableHIDDetectionOnOOBE[]     = "enable-hid-detection-on-oobe";
80
81 // Enables notifications about captive portals in session.
82 const char kEnableNetworkPortalNotification[] =
83     "enable-network-portal-notification";
84
85 // Enables touchpad three-finger-click as middle button.
86 const char kEnableTouchpadThreeFingerClick[]
87     = "enable-touchpad-three-finger-click";
88
89 // Enable Kiosk mode for ChromeOS. Note this switch refers to retail mode rather
90 // than the kiosk app mode.
91 const char kEnableKioskMode[]               = "enable-kiosk-mode";
92
93 // Enables rollback option for resetting ChromeOS.
94 const char kEnableRollbackOption[]          = "enable-rollback-option";
95
96 // Enables request of tablet site (via user agent override).
97 const char kEnableRequestTabletSite[]       = "enable-request-tablet-site";
98
99 // Whether to enable forced enterprise re-enrollment.
100 const char kEnterpriseEnableForcedReEnrollment[] =
101     "enterprise-enable-forced-re-enrollment";
102
103 // Power of the power-of-2 initial modulus that will be used by the
104 // auto-enrollment client. E.g. "4" means the modulus will be 2^4 = 16.
105 const char kEnterpriseEnrollmentInitialModulus[] =
106     "enterprise-enrollment-initial-modulus";
107
108 // Power of the power-of-2 maximum modulus that will be used by the
109 // auto-enrollment client.
110 const char kEnterpriseEnrollmentModulusLimit[] =
111     "enterprise-enrollment-modulus-limit";
112
113 // Don't create robot account on enrollment. Used when testing device
114 // enrollment against YAPS or the Python test server.
115 const char kEnterpriseEnrollmentSkipRobotAuth[] =
116     "enterprise-enrollment-skip-robot-auth";
117
118 // Enables the new audio player in the Files.app.
119 const char kFileManagerEnableNewAudioPlayer[] =
120     "file-manager-enable-new-audio-player";
121
122 // Enables the new gallery in the Files.app.
123 const char kFileManagerEnableNewGallery[] =
124     "file-manager-enable-new-gallery";
125
126 // Passed to Chrome the first time that it's run after the system boots.
127 // Not passed on restart after sign out.
128 const char kFirstExecAfterBoot[]            = "first-exec-after-boot";
129
130 // Usually in browser tests the usual login manager bringup is skipped so that
131 // tests can change how it's brought up. This flag disables that.
132 const char kForceLoginManagerInTests[]      = "force-login-manager-in-tests";
133
134 // Indicates that the browser is in "browse without sign-in" (Guest session)
135 // mode. Should completely disable extensions, sync and bookmarks.
136 const char kGuestSession[]                  = "bwsi";
137
138 // If true, the Chromebook has a Chrome OS keyboard. Don't use the flag for
139 // Chromeboxes.
140 const char kHasChromeOSKeyboard[]           = "has-chromeos-keyboard";
141
142 // If true, the Chromebook has a keyboard with a diamond key.
143 const char kHasChromeOSDiamondKey[]         = "has-chromeos-diamond-key";
144
145 // Path for the screensaver used in Kiosk mode
146 const char kKioskModeScreensaverPath[]      = "kiosk-mode-screensaver-path";
147
148 // Enables Chrome-as-a-login-manager behavior.
149 const char kLoginManager[]                  = "login-manager";
150
151 // Specifies a password to be used to login (along with login-user).
152 const char kLoginPassword[]                 = "login-password";
153
154 // Specifies the profile to use once a chromeos user is logged in. This is
155 // required unless --multi-profile is set.
156 const char kLoginProfile[]                  = "login-profile";
157
158 // Specifies the user which is already logged in.
159 const char kLoginUser[]                     = "login-user";
160
161 // Enables natural scroll by default.
162 const char kNaturalScrollDefault[]          = "enable-natural-scroll-default";
163
164 // Skips all other OOBE pages after user login.
165 const char kOobeSkipPostLogin[]             = "oobe-skip-postlogin";
166
167 // Interval at which we check for total time on OOBE.
168 const char kOobeTimerInterval[]             = "oobe-timer-interval";
169
170 // Indicates that a guest session has been started before OOBE completion.
171 const char kOobeGuestSession[]              = "oobe-guest-session";
172
173 // Specifies power stub behavior:
174 //  'cycle=2' - Cycles power states every 2 seconds.
175 // See FakeDBusThreadManager::ParsePowerCommandLineSwitch for full details.
176 const char kPowerStub[] = "power-stub";
177
178 // Specifies network stub behavior. If this switch is not specified,
179 // ethernet, wifi and vpn are enabled by default, and transitions occur
180 // instantaneously. Multiple options can be comma separated (no spaces).
181 // See FakeShillManagerClient::SetInitialNetworkState for implementation.
182 // Examples:
183 //  'wifi=on' - A wifi network is initially connected ('1' also works)
184 //  'wifi=off' - Wifi networks are all initially disconnected ('0' also works)
185 //  'wifi=disabled' - Wifi is initially disabled
186 //  'wifi=none' - Wifi is unavailable
187 //  'wifi=portal' - Wifi connection will be in Portal state
188 //  'cellular=1' - Cellular is initially connected
189 //  'interactive=3' - Interactive mode, connect/scan/etc requests take 3 secs
190 const char kShillStub[] = "shill-stub";
191
192 // Sends test messages on first call to RequestUpdate (stub only).
193 const char kSmsTestMessages[]               = "sms-test-messages";
194
195 // Indicates that a stub implementation of CrosSettings that stores settings in
196 // memory without signing should be used, treating current user as the owner.
197 // This option is for testing the chromeos build of chrome on the desktop only.
198 const char kStubCrosSettings[]              = "stub-cros-settings";
199
200 // Disables SAML sigin support.
201 const char kDisableSamlSignin[]             = "disable-saml-signin";
202
203 // Disables new first-run overlay UI.
204 const char kDisableFirstRunUI[] = "disable-first-run-ui";
205
206 // Enables animated transitions during first-run tutorial.
207 const char kEnableFirstRunUITransitions[] = "enable-first-run-ui-transitions";
208
209 // Forces first-run UI to be shown for every login.
210 const char kForceFirstRunUI[] = "force-first-run-ui";
211
212 // Enables testing for auto update UI.
213 const char kTestAutoUpdateUI[] = "test-auto-update-ui";
214
215 }  // namespace switches
216 }  // namespace chromeos