Upstream version 5.34.92.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 // Enables overriding the path for the default authentication extension.
19 const char kAuthExtensionPath[]             = "auth-ext-path";
20
21 // Forces the stub implementation of dbus clients.
22 const char kDbusStub[] = "dbus-stub";
23
24 // All stub networks are idle by default.
25 const char kDefaultStubNetworkStateIdle[] = "default-stub-network-state-idle";
26
27 // Disables wallpaper boot animation (except of OOBE case).
28 const char kDisableBootAnimation[]          = "disable-boot-animation";
29
30 // Disables Google Drive integration.
31 const char kDisableDrive[]                  = "disable-drive";
32
33 // Disables reporting recently logged in users for enterprise-managed devices.
34 const char kDisableEnterpriseUserReporting[] =
35     "disable-enterprise-user-reporting";
36
37 // Disable Genius App and use the original Help App instead.
38 const char kDisableGeniusApp[]              = "disable-genius-app";
39
40 // Disable to show the indicator about the IME (input method editor) mode
41 // on Chrome OS.
42 const char kDisableIMEModeIndicator[] = "disable-ime-mode-indicator";
43
44 // Disable policy-configured local accounts.
45 const char kDisableLocalAccounts[]          = "disable-local-accounts";
46
47 // Avoid doing expensive animations upon login.
48 const char kDisableLoginAnimations[]        = "disable-login-animations";
49
50 // Disable new channel switcher UI.
51 const char kDisableNewChannelSwitcherUI[]   = "disable-new-channel-switcher-ui";
52
53 // Disable Quickoffice component app thus handlers won't be registered so
54 // it will be possible to install another version as normal app for testing.
55 const char kDisableQuickofficeComponentApp[] =
56     "disable-quickoffice-component-app";
57
58 // Disables fetching online CrOS EULA page, only static version is shown.
59 const char kDisableOnlineEULA[] = "disable-cros-online-eula";
60
61 // Avoid doing animations upon oobe.
62 const char kDisableOobeAnimation[]          = "disable-oobe-animation";
63
64 // Disables portal detection and network error handling before auto
65 // update.
66 const char kDisableOOBEBlockingUpdate[] =
67     "disable-oobe-blocking-update";
68
69 // Enables overriding the path for the default echo component extension.
70 // Useful for testing.
71 const char kEchoExtensionPath[]             = "echo-ext-path";
72
73 // Enables component extension that initializes background pages of
74 // certain hosted applications.
75 const char kEnableBackgroundLoader[]        = "enable-background-loader";
76
77 // Enables switching between different cellular carriers from the UI.
78 const char kEnableCarrierSwitching[]        = "enable-carrier-switching";
79
80 // Enables automatically initializing Google Drive offline mode on first run.
81 const char kEnableDriveOfflineFirstRun[] = "enable-drive-offline-first-run";
82
83 // Enable "interactive" mode for stub implemenations (e.g. NetworkStateHandler)
84 const char kEnableStubInteractive[] = "enable-stub-interactive";
85
86 // Enable stub portalled wifi network for testing.
87 const char kEnableStubPortalledWifi[] = "enable-stub-portalled-wifi";
88
89 // Enables touchpad three-finger-click as middle button.
90 const char kEnableTouchpadThreeFingerClick[]
91     = "enable-touchpad-three-finger-click";
92
93 // Enables volume adjust sound.
94 const char kEnableVolumeAdjustSound[] = "enable-volume-adjust-sound";
95
96 // Specifies stub network types to be enabled.  If this switch is not specified,
97 // ethernet, wifi and vpn are enabled by default.
98 //
99 // Examples:
100 // Disable all network types: --enabled-stub-network-types=''
101 // Enable wifi only: --enabled-stub-network-types=wifi
102 // Enable ethernet and wifi: --enabled-stub-network-types=ethernet,wifi
103 const char kEnabledStubNetworkTypes[] = "enabled-stub-network-types";
104
105 // Enable Kiosk mode for ChromeOS. Note this switch refers to retail mode rather
106 // than the kiosk app mode.
107 const char kEnableKioskMode[]               = "enable-kiosk-mode";
108
109 // Enables request of tablet site (via user agent override).
110 const char kEnableRequestTabletSite[]       = "enable-request-tablet-site";
111
112 // Power of the power-of-2 initial modulus that will be used by the
113 // auto-enrollment client. E.g. "4" means the modulus will be 2^4 = 16.
114 const char kEnterpriseEnrollmentInitialModulus[] =
115     "enterprise-enrollment-initial-modulus";
116
117 // Power of the power-of-2 maximum modulus that will be used by the
118 // auto-enrollment client.
119 const char kEnterpriseEnrollmentModulusLimit[] =
120     "enterprise-enrollment-modulus-limit";
121
122 // Don't create robot account on enrollment. Used when testing device
123 // enrollment against YAPS or the Python test server.
124 const char kEnterpriseEnrollmentSkipRobotAuth[] =
125     "enterprise-enrollment-skip-robot-auth";
126
127 // Shows the selecting checkboxes in the Files.app.
128 const char kFileManagerShowCheckboxes[]     = "file-manager-show-checkboxes";
129
130 // Enables the webstore integration feature in the Files.app.
131 const char kFileManagerEnableWebstoreIntegration[] =
132     "file-manager-enable-webstore-integration";
133
134 // Enables the multi-profile support in the Files.app.
135 const char kFileManagerEnableMultiProfile[] =
136     "file-manager-enable-multi-profile";
137
138 // Passed to Chrome the first time that it's run after the system boots.
139 // Not passed on restart after sign out.
140 const char kFirstExecAfterBoot[]            = "first-exec-after-boot";
141
142 // Usually in browser tests the usual login manager bringup is skipped so that
143 // tests can change how it's brought up. This flag disables that.
144 const char kForceLoginManagerInTests[]      = "force-login-manager-in-tests";
145
146 // Sets primary user's default multiprofile behavior to 'unrestricted' for
147 // tests so that multiprofile is enabled for any user.
148 // TODO(xiyuan): Remove when multiprofile is released to everyone.
149 const char kForceMultiProfileInTests[]      = "force-multi-profiles-in-tests";
150
151 // Makes GPU sandbox failures nonfatal.
152 const char kGpuSandboxFailuresNonfatal[] = "gpu-sandbox-failures-nonfatal";
153
154 // Indicates that the browser is in "browse without sign-in" (Guest session)
155 // mode. Should completely disable extensions, sync and bookmarks.
156 const char kGuestSession[]                  = "bwsi";
157
158 // If true, the Chromebook has a Chrome OS keyboard. Don't use the flag for
159 // Chromeboxes.
160 const char kHasChromeOSKeyboard[]           = "has-chromeos-keyboard";
161
162 // If true, the Chromebook has a keyboard with a diamond key.
163 const char kHasChromeOSDiamondKey[]         = "has-chromeos-diamond-key";
164
165 // Path for the screensaver used in Kiosk mode
166 const char kKioskModeScreensaverPath[]      = "kiosk-mode-screensaver-path";
167
168 // Allows override of oobe for testing - goes directly to the login screen.
169 const char kLoginScreen[]                   = "login-screen";
170
171 // Enables Chrome-as-a-login-manager behavior.
172 const char kLoginManager[]                  = "login-manager";
173
174 // Specifies a password to be used to login (along with login-user).
175 const char kLoginPassword[]                 = "login-password";
176
177 // Specifies the profile to use once a chromeos user is logged in.
178 const char kLoginProfile[]                  = "login-profile";
179
180 // Specifies the user which is already logged in.
181 const char kLoginUser[]                     = "login-user";
182
183 // Enables natural scroll by default.
184 const char kNaturalScrollDefault[]          = "enable-natural-scroll-default";
185
186 // Skips all other OOBE pages after user login.
187 const char kOobeSkipPostLogin[]             = "oobe-skip-postlogin";
188
189 // Integer flag that sets the DeviceRegistered local state pref.
190 const char kDeviceRegistered[]              = "device-registered";
191
192 // Skips the machine hwid check. Useful for running in VMs because they have no
193 // hwid.
194 const char kSkipHWIDCheck[]                 = "skip-hwid-check";
195
196 // Sends test messages on first call to RequestUpdate (stub only).
197 const char kSmsTestMessages[]               = "sms-test-messages";
198
199 // Indicates that a stub implementation of CrosSettings that stores settings in
200 // memory without signing should be used, treating current user as the owner.
201 // This option is for testing the chromeos build of chrome on the desktop only.
202 const char kStubCrosSettings[]              = "stub-cros-settings";
203
204 // Disables user image sync.
205 const char kDisableUserImageSync[]          = "disable-user-image-sync";
206
207 // Disables SAML sigin support.
208 const char kDisableSamlSignin[]             = "disable-saml-signin";
209
210 // Disables new first-run overlay UI.
211 const char kDisableFirstRunUI[] = "disable-first-run-ui";
212
213 // Enables animated transitions during first-run tutorial.
214 const char kEnableFirstRunUITransitions[] = "enable-first-run-ui-transitions";
215
216 // Forces first-run UI to be shown for every login.
217 const char kForceFirstRunUI[] = "force-first-run-ui";
218
219 // Enables testing for auto update UI.
220 const char kTestAutoUpdateUI[] = "test-auto-update-ui";
221
222 // Enables features required for supervised user sync,
223 const char kEnableSupervisedPasswordSync[] = "enable-supervised-password-sync";
224
225 }  // namespace switches
226 }  // namespace chromeos