Fix broken path in extensions/common/PRESUBMIT.py
[chromium-blink-merge.git] / chrome / common / chrome_switches.cc
blob5417cedeccaa0675a297ec944b71ab22f2620267
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.
5 #include "chrome/common/chrome_switches.h"
7 #include "base/base_switches.h"
8 #include "base/command_line.h"
10 namespace switches {
12 // -----------------------------------------------------------------------------
13 // Can't find the switch you are looking for? Try looking in:
14 // ash/ash_switches.cc
15 // base/base_switches.cc
16 // chromeos/chromeos_switches.cc
17 // etc.
19 // When commenting your switch, please use the same voice as surrounding
20 // comments. Imagine "This switch..." at the beginning of the phrase, and it'll
21 // all work out.
22 // -----------------------------------------------------------------------------
24 // Allows third-party content included on a page to prompt for a HTTP basic
25 // auth username/password pair.
26 const char kAllowCrossOriginAuthPrompt[] = "allow-cross-origin-auth-prompt";
28 // On ChromeOS, file:// access is disabled except for certain whitelisted
29 // directories. This switch re-enables file:// for testing.
30 const char kAllowFileAccess[] = "allow-file-access";
32 // Allow non-secure origins to use the screen capture API and the desktopCapture
33 // extension API.
34 const char kAllowHttpScreenCapture[] = "allow-http-screen-capture";
36 // Enables TLS/SSL errors on localhost to be ignored (no interstitial,
37 // no blocking of requests).
38 const char kAllowInsecureLocalhost[] = "allow-insecure-localhost";
40 #if defined(ENABLE_PLUGINS)
41 // Specifies comma-separated list of extension ids or hosts to grant
42 // access to CRX file system APIs.
43 const char kAllowNaClCrxFsAPI[] = "allow-nacl-crxfs-api";
45 // Specifies comma-separated list of extension ids or hosts to grant
46 // access to file handle APIs.
47 const char kAllowNaClFileHandleAPI[] = "allow-nacl-file-handle-api";
49 // Specifies comma-separated list of extension ids or hosts to grant
50 // access to TCP/UDP socket APIs.
51 const char kAllowNaClSocketAPI[] = "allow-nacl-socket-api";
53 // Disables forcing on the experimental Plugin Power Saver feature.
54 const char kDisablePluginPowerSaver[] = "disable-plugin-power-saver";
56 // Enables forcing on the experimental Plugin Power Saver feature.
57 const char kEnablePluginPowerSaver[] = "enable-plugin-power-saver";
58 #endif
60 // Don't block outdated plugins.
61 const char kAllowOutdatedPlugins[] = "allow-outdated-plugins";
63 // By default, an https page cannot run JavaScript, CSS or plugins from http
64 // URLs. This provides an override to get the old insecure behavior.
65 const char kAllowRunningInsecureContent[] = "allow-running-insecure-content";
67 // Specifies the probability threshold for alternative services: an advertised
68 // alternative service will only be honored if the advertised probability is
69 // greater than or equal to this threshold.
70 const char kAlternativeServiceProbabilityThreshold[] =
71 "alternative-service-probability-threshold";
73 // Prevents Chrome from requiring authorization to run certain widely installed
74 // but less commonly used plugins.
75 const char kAlwaysAuthorizePlugins[] = "always-authorize-plugins";
77 // Specifies that the extension-app with the specified id should be launched
78 // according to its configuration.
79 const char kAppId[] = "app-id";
81 // Specifies that the associated value should be launched in "application"
82 // mode.
83 const char kApp[] = "app";
85 // Overrides the apps checkout URL, which is used to determine when to expose
86 // some private APIs.
87 const char kAppsCheckoutURL[] = "apps-checkout-url";
89 // The URL that the webstore APIs download extensions from.
90 // Note: the URL must contain one '%s' for the extension ID.
91 const char kAppsGalleryDownloadURL[] = "apps-gallery-download-url";
93 // The URL to use for the gallery link in the app launcher.
94 const char kAppsGalleryURL[] = "apps-gallery-url";
96 // The update url used by gallery/webstore extensions.
97 const char kAppsGalleryUpdateURL[] = "apps-gallery-update-url";
99 // Value of GAIA auth code for --force-app-mode.
100 const char kAppModeAuthCode[] = "app-mode-auth-code";
102 // Value of OAuth2 refresh token for --force-app-mode.
103 const char kAppModeOAuth2Token[] = "app-mode-oauth-token";
105 // Enables overriding the path for the default authentication extension.
106 const char kAuthExtensionPath[] = "auth-ext-path";
108 // A flag that is used to tell Chrome that it was launched automatically at
109 // computer startup and not by some user action.
110 const char kAutoLaunchAtStartup[] = "auto-launch-at-startup";
112 // This flag makes Chrome auto-select the provided choice when an extension asks
113 // permission to start desktop capture. Should only be used for tests. For
114 // instance, --auto-select-desktop-capture-source="Entire screen" will
115 // automatically select to share the entire screen in English locales.
116 const char kAutoSelectDesktopCaptureSource[] =
117 "auto-select-desktop-capture-source";
119 // This flag causes the user engagement checks for showing app banners to be
120 // bypasses. It is intended to be used by developers who wish to test that their
121 // sites otherwise meet the criteria needed to show app banners.
122 const char kBypassAppBannerEngagementChecks[] =
123 "bypass-app-banner-engagement-checks";
125 // Certificate Transparency: Uses the provided log(s) for checking Signed
126 // Certificate Timestamps provided with certificates.
127 // The switch's value is:
128 // log_description:log_key:log_url,log_description:log_key:log_url,...
129 // where
130 // log_description is a textual description of the log.
131 // log_key is a Base64'd DER-encoded SubjectPublicKeyInfo of the log's
132 // public key.
133 // log_url is a URL for the log, excluding the schema (which is always
134 // assumed to be HTTPS as required by RFC6962).
135 // Multiple logs can be specified by repeating description:key pairs,
136 // separated by a comma.
137 const char kCertificateTransparencyLog[] =
138 "certificate-transparency-log";
140 // How often (in seconds) to check for updates. Should only be used for testing
141 // purposes.
142 const char kCheckForUpdateIntervalSec[] = "check-for-update-interval";
144 // Comma-separated list of SSL cipher suites to disable.
145 const char kCipherSuiteBlacklist[] = "cipher-suite-blacklist";
147 // Tells chrome to display the cloud print dialog and upload the specified file
148 // for printing.
149 const char kCloudPrintFile[] = "cloud-print-file";
151 // Specifies the mime type to be used when uploading data from the file
152 // referenced by cloud-print-file. Defaults to "application/pdf" if
153 // unspecified.
154 const char kCloudPrintFileType[] = "cloud-print-file-type";
156 // Used with kCloudPrintFile to specify a JSON print ticket for the resulting
157 // print job. Defaults to null if unspecified.
158 const char kCloudPrintPrintTicket[] = "cloud-print-print-ticket";
160 // Used with kCloudPrintFile to specify a title for the resulting print job.
161 const char kCloudPrintJobTitle[] = "cloud-print-job-title";
163 // Setup cloud print proxy for provided printers. This does not start
164 // service or register proxy for autostart.
165 const char kCloudPrintSetupProxy[] = "cloud-print-setup-proxy";
167 // Comma-separated list of BrowserThreads that cause browser process to crash
168 // if the given browser thread is not responsive. UI,IO,DB,FILE,CACHE are the
169 // list of BrowserThreads that are supported.
171 // For example:
172 // --crash-on-hang-threads=UI:3:18,IO:3:18 --> Crash the browser if UI or IO
173 // is not responsive for 18 seconds and the number of browser threads that
174 // are responding is less than or equal to 3.
175 const char kCrashOnHangThreads[] = "crash-on-hang-threads";
177 // Some platforms like ChromeOS default to empty desktop.
178 // Browser tests may need to add this switch so that at least one browser
179 // instance is created on startup.
180 // TODO(nkostylev): Investigate if this switch could be removed.
181 // (http://crbug.com/148675)
182 const char kCreateBrowserOnStartupForTests[] =
183 "create-browser-on-startup-for-tests";
185 // Enables a frame context menu item that toggles the frame in and out of glass
186 // mode (Windows Vista and up only).
187 const char kDebugEnableFrameToggle[] = "debug-enable-frame-toggle";
189 // Adds debugging entries such as Inspect Element to context menus of packed
190 // apps.
191 const char kDebugPackedApps[] = "debug-packed-apps";
193 // Triggers a plethora of diagnostic modes.
194 const char kDiagnostics[] = "diagnostics";
196 // Sets the output format for diagnostic modes enabled by diagnostics flag.
197 const char kDiagnosticsFormat[] = "diagnostics-format";
199 // Tells the diagnostics mode to do the requested recovery step(s).
200 const char kDiagnosticsRecovery[] = "diagnostics-recovery";
202 // When kEnableSettingsWindow is used, About is shown as an overlay in Settings
203 // instead of as a separate page, unless this flag is specified.
204 const char kDisableAboutInSettings[] = "disable-about-in-settings";
206 // Disables the experimental asynchronous DNS client.
207 const char kDisableAsyncDns[] = "disable-async-dns";
209 // Disable several subsystems which run network requests in the background.
210 // This is for use when doing network performance testing to avoid noise in the
211 // measurements.
212 const char kDisableBackgroundNetworking[] = "disable-background-networking";
214 // Disables the bundled PPAPI version of Flash.
215 const char kDisableBundledPpapiFlash[] = "disable-bundled-ppapi-flash";
217 // Disable hardware encoding support for Cast Streaming.
218 const char kDisableCastStreamingHWEncoding[] =
219 "disable-cast-streaming-hw-encoding";
221 // Disables detection of child accounts.
222 const char kDisableChildAccountDetection[] =
223 "disable-child-account-detection";
225 // Disables the client-side phishing detection feature. Note that even if
226 // client-side phishing detection is enabled, it will only be active if the
227 // user has opted in to UMA stats and SafeBrowsing is enabled in the
228 // preferences.
229 const char kDisableClientSidePhishingDetection[] =
230 "disable-client-side-phishing-detection";
232 // Disable default component extensions with background pages - useful for
233 // performance tests where these pages may interfere with perf results.
234 const char kDisableComponentExtensionsWithBackgroundPages[] =
235 "disable-component-extensions-with-background-pages";
237 const char kDisableComponentUpdate[] = "disable-component-update";
239 // Disables installation of default apps on first run. This is used during
240 // automated testing.
241 const char kDisableDefaultApps[] = "disable-default-apps";
243 // Disables device discovery notifications.
244 const char kDisableDeviceDiscoveryNotifications[] =
245 "disable-device-discovery-notifications";
247 // Disables the dinosaur easter egg on the offline interstitial.
248 const char kDisableDinosaurEasterEgg[] = "disable-dinosaur-easter-egg";
250 // Disables Domain Reliability Monitoring.
251 const char kDisableDomainReliability[] = "disable-domain-reliability";
253 // Disable extensions.
254 const char kDisableExtensions[] = "disable-extensions";
256 // Disable checking for user opt-in for extensions that want to inject script
257 // into file URLs (ie, always allow it). This is used during automated testing.
258 const char kDisableExtensionsFileAccessCheck[] =
259 "disable-extensions-file-access-check";
261 // Disable the net::URLRequestThrottlerManager functionality for
262 // requests originating from extensions.
263 const char kDisableExtensionsHttpThrottling[] =
264 "disable-extensions-http-throttling";
266 // Don't resolve hostnames to IPv6 addresses. This can be used when debugging
267 // issues relating to IPv6, but shouldn't otherwise be needed. Be sure to file
268 // bugs if something isn't working properly in the presence of IPv6. This flag
269 // can be overidden by the "enable-ipv6" flag.
270 const char kDisableIPv6[] = "disable-ipv6";
272 // Disable the behavior that the second click on a launcher item (the click when
273 // the item is already active) minimizes the item.
274 const char kDisableMinimizeOnSecondLauncherItemClick[] =
275 "disable-minimize-on-second-launcher-item-click";
277 // Disables the new bookmark app system.
278 const char kDisableNewBookmarkApps[] = "disable-new-bookmark-apps";
280 // Disables the new offline error page generated by NetErrorHelper for ChromeOS
281 // and instead uses the old error page generated by OfflineResourceThrottle.
282 const char kDisableNewOfflineErrorPage[] = "disable-new-offline-error-page";
284 // Disables the menu on the NTP for accessing sessions from other devices.
285 const char kDisableNTPOtherSessionsMenu[] = "disable-ntp-other-sessions-menu";
287 // Disable auto-reload of error pages if offline.
288 const char kDisableOfflineAutoReload[] = "disable-offline-auto-reload";
290 // Disable only auto-reloading error pages when the tab is visible.
291 const char kDisableOfflineAutoReloadVisibleOnly[] =
292 "disable-offline-auto-reload-visible-only";
294 // Disable the setting to prompt the user for their OS account password before
295 // revealing plaintext passwords in the password manager.
296 const char kDisablePasswordManagerReauthentication[] =
297 "disable-password-manager-reauthentication";
299 // Disable the new material UI - requires out of process PDF plugin.
300 const char kDisablePdfMaterialUI[] = "disable-pdf-material-ui";
302 // Don't use bubbles for content permissions requests instead of infobars.
303 const char kDisablePermissionsBubbles[] = "disable-permissions-bubbles";
305 // Disable pop-up blocking.
306 const char kDisablePopupBlocking[] = "disable-popup-blocking";
308 // Disable speculative TCP/IP preconnection.
309 const char kDisablePreconnect[] = "disable-preconnect";
311 // Disables print preview (For testing, and for users who don't like us. :[ )
312 const char kDisablePrintPreview[] = "disable-print-preview";
314 // Normally when the user attempts to navigate to a page that was the result of
315 // a post we prompt to make sure they want to. This switch may be used to
316 // disable that check. This switch is used during automated testing.
317 const char kDisablePromptOnRepost[] = "disable-prompt-on-repost";
319 // Disables support for the QUIC protocol.
320 const char kDisableQuic[] = "disable-quic";
322 // Disable use of pacing of QUIC packets.
323 // This only has an effect if QUIC protocol is enabled.
324 const char kDisableQuicPacing[] = "disable-quic-pacing";
326 // Disable use of Chromium's port selection for the ephemeral port via bind().
327 // This only has an effect if QUIC protocol is enabled.
328 const char kDisableQuicPortSelection[] = "disable-quic-port-selection";
330 // Prevents the save password bubble from being enabled.
331 const char kDisableSavePasswordBubble[] = "disable-save-password-bubble";
333 // Prevents SDCH persistence from being used.
334 const char kDisableSdchPersistence[] = "disable-sdch-persistence";
336 // Disables using bubbles for session restore request.
337 const char kDisableSessionCrashedBubble[] = "disable-session-crashed-bubble";
339 // Disables the Site Engagement service, which records interaction with sites
340 // and allocates certain resources accordingly.
341 const char kDisableSiteEngagementService[] = "disable-site-engagement-service";
343 // Disables the suggestions service.
344 const char kDisableSuggestionsService[] = "disable-suggestions-service";
346 // Disables syncing browser data to a Google Account.
347 const char kDisableSync[] = "disable-sync";
349 // Disables syncing one or more sync data types that are on by default.
350 // See sync/internal_api/public/base/model_type.h for possible types. Types
351 // should be comma separated, and follow the naming convention for string
352 // representation of model types, e.g.:
353 // --disable-synctypes='Typed URLs, Bookmarks, Autofill Profiles'
354 const char kDisableSyncTypes[] = "disable-sync-types";
356 // Disables the backend service for web resources.
357 const char kDisableWebResources[] = "disable-web-resources";
359 // Some tests seem to require the application to close when the last
360 // browser window is closed. Thus, we need a switch to force this behavior
361 // for ChromeOS Aura, disable "zero window mode".
362 // TODO(pkotwicz): Investigate if this bug can be removed.
363 // (http://crbug.com/119175)
364 const char kDisableZeroBrowsersOpenForTests[] =
365 "disable-zero-browsers-open-for-tests";
367 // Use a specific disk cache location, rather than one derived from the
368 // UserDatadir.
369 const char kDiskCacheDir[] = "disk-cache-dir";
371 // Forces the maximum disk space to be used by the disk cache, in bytes.
372 const char kDiskCacheSize[] = "disk-cache-size";
374 const char kDnsLogDetails[] = "dns-log-details";
376 // Disables prefetching of DNS information.
377 const char kDnsPrefetchDisable[] = "dns-prefetch-disable";
379 // Requests that a running browser process dump its collected histograms to a
380 // given file. The file is overwritten if it exists.
381 const char kDumpBrowserHistograms[] = "dump-browser-histograms";
383 // Overrides the path of Easy Unlock component app.
384 const char kEasyUnlockAppPath[] = "easy-unlock-app-path";
386 // If set, the app list will be enabled as if enabled from CWS.
387 const char kEnableAppList[] = "enable-app-list";
389 // Enable OS integration for Chrome app file associations.
390 const char kEnableAppsFileAssociations[] = "enable-apps-file-associations";
392 // Enables the experimental asynchronous DNS client.
393 const char kEnableAsyncDns[] = "enable-async-dns";
395 // Enables the benchmarking extensions.
396 const char kEnableBenchmarking[] = "enable-benchmarking";
398 // Enables the multi-level undo system for bookmarks.
399 const char kEnableBookmarkUndo[] = "enable-bookmark-undo";
401 // Enables detection of child accounts.
402 const char kEnableChildAccountDetection[] =
403 "enable-child-account-detection";
405 // This applies only when the process type is "service". Enables the Cloud
406 // Print Proxy component within the service process.
407 const char kEnableCloudPrintProxy[] = "enable-cloud-print-proxy";
409 // If true devtools experimental settings are enabled.
410 const char kEnableDevToolsExperiments[] = "enable-devtools-experiments";
412 // Enable device discovery notifications.
413 const char kEnableDeviceDiscoveryNotifications[] =
414 "enable-device-discovery-notifications";
416 // Enables the DOM distiller.
417 const char kEnableDomDistiller[] = "enable-dom-distiller";
419 // Enables Domain Reliability Monitoring.
420 const char kEnableDomainReliability[] = "enable-domain-reliability";
422 // Enables Download Notification.
423 const char kEnableDownloadNotification[] = "enable-download-notification";
425 // Enable Enhanced Bookmarks.
426 const char kEnhancedBookmarksExperiment[] = "enhanced-bookmarks-experiment";
428 // Enables experimentation with ephemeral apps to be launched from the webstore.
429 const char kEnableEphemeralAppsInWebstore[] =
430 "enable-ephemeral-apps-in-webstore";
432 // Enables experimental hotword features specific to always-on.
433 const char kEnableExperimentalHotwordHardware[] = "enable-hotword-hardware";
435 // Enables logging for extension activity.
436 const char kEnableExtensionActivityLogging[] =
437 "enable-extension-activity-logging";
439 const char kEnableExtensionActivityLogTesting[] =
440 "enable-extension-activity-log-testing";
442 // Enable the fast unload controller, which speeds up tab/window close by
443 // running a tab's onunload js handler independently of the GUI -
444 // crbug.com/142458 .
445 const char kEnableFastUnload[] = "enable-fast-unload";
447 // Enables IPv6 support, even if probes suggest that it may not be fully
448 // supported. Some probes may require internet connections, and this flag will
449 // allow support independent of application testing. This flag overrides
450 // "disable-ipv6" which appears elswhere in this file.
451 const char kEnableIPv6[] = "enable-ipv6";
453 // Enables experimentation with launching ephemeral apps via hyperlinks.
454 const char kEnableLinkableEphemeralApps[] = "enable-linkable-ephemeral-apps";
456 // Enables the material design Settings feature.
457 const char kEnableMaterialDesignSettings[] = "enable-md-settings";
459 // Enables Media Router.
460 const char kEnableMediaRouter[] = "enable-media-router";
462 // Runs the Native Client inside the renderer process and enables GPU plugin
463 // (internally adds lEnableGpuPlugin to the command line).
464 const char kEnableNaCl[] = "enable-nacl";
466 // Enables the network-related benchmarking extensions.
467 const char kEnableNetBenchmarking[] = "enable-net-benchmarking";
469 // Enables the new bookmark app system.
470 const char kEnableNewBookmarkApps[] = "enable-new-bookmark-apps";
472 // Enables NPN with HTTP. It means NPN is enabled but SPDY won't be used.
473 // HTTP is still used for all requests.
474 const char kEnableNpnHttpOnly[] = "enable-npn-http";
476 // Enable auto-reload of error pages if offline.
477 const char kEnableOfflineAutoReload[] = "enable-offline-auto-reload";
479 // Only auto-reload error pages when the tab is visible.
480 const char kEnableOfflineAutoReloadVisibleOnly[] =
481 "enable-offline-auto-reload-visible-only";
483 // Enables panels (always on-top docked pop-up windows).
484 const char kEnablePanels[] = "enable-panels";
486 // Enable the new material UI - requires out of process PDF plugin.
487 const char kEnablePdfMaterialUI[] = "enable-pdf-material-ui";
489 // Enables presenting plugin placeholder content as shadow DOM.
490 const char kEnablePluginPlaceholderShadowDom[] =
491 "enable-plugin-placeholder-shadow-dom";
493 // Enables a number of potentially annoying security features (strict mixed
494 // content mode, powerful feature restrictions, etc.)
495 const char kEnablePotentiallyAnnoyingSecurityFeatures[] =
496 "enable-potentially-annoying-security-features";
498 // Enables the Power overlay in Settings.
499 const char kEnablePowerOverlay[] = "enable-power-overlay";
501 // Enables showing unregistered printers in print preview
502 const char kEnablePrintPreviewRegisterPromos[] =
503 "enable-print-preview-register-promos";
505 // Enables tracking of tasks in profiler for viewing via about:profiler.
506 // To predominantly disable tracking (profiling), use the command line switch:
507 // --enable-profiling=0
508 // Some tracking will still take place at startup, but it will be turned off
509 // during chrome_browser_main.
510 const char kEnableProfiling[] = "enable-profiling";
512 // Enables query in the omnibox.
513 const char kEnableQueryExtraction[] = "enable-query-extraction";
515 // Enables support for the QUIC protocol. This is a temporary testing flag.
516 const char kEnableQuic[] = "enable-quic";
518 // Disable use of pacing of QUIC packets.
519 // This only has an effect if QUIC protocol is enabled.
520 const char kEnableQuicPacing[] = "enable-quic-pacing";
522 // Enable use of Chromium's port selection for the ephemeral port via bind().
523 // This only has an effect if QUIC protocol is enabled.
524 const char kEnableQuicPortSelection[] = "enable-quic-port-selection";
526 // Enables save password prompt bubble.
527 const char kEnableSavePasswordBubble[] = "enable-save-password-bubble";
529 // Enables SDCH persistence.
530 const char kEnableSdchPersistence[] = "enable-sdch-persistence";
532 // Enables using bubbles for session restore request instead of infobars.
533 const char kEnableSessionCrashedBubble[] = "enable-session-crashed-bubble";
535 // Enable or disable settings in a separate browser window per profile
536 // (see SettingsWindowEnabled() below).
537 const char kEnableSettingsWindow[] = "enable-settings-window";
538 const char kDisableSettingsWindow[] = "disable-settings-window";
540 // Enable the Site Engagement service, which records interaction with sites and
541 // allocates certain resources accordingly.
542 const char kEnableSiteEngagementService[] = "enable-site-engagement-service";
544 // Enable SPDY/4, aka HTTP/2. This is a temporary testing flag.
545 const char kEnableSpdy4[] = "enable-spdy4";
547 // Enables the suggestions service.
548 const char kEnableSuggestionsService[] = "enable-suggestions-service";
550 // Enables the supervised user managed bookmarks folder.
551 const char kEnableSupervisedUserManagedBookmarksFolder[] =
552 "enable-supervised-user-managed-bookmarks-folder";
554 // Enables synced articles.
555 const char kEnableSyncArticles[] = "enable-sync-articles";
557 // Enables user control over muting tab audio from the tab strip.
558 const char kEnableTabAudioMuting[] = "enable-tab-audio-muting";
560 // Enables fanciful thumbnail processing. Used with NTP for
561 // instant-extended-api, where thumbnails are generally smaller.
562 const char kEnableThumbnailRetargeting[] = "enable-thumbnail-retargeting";
564 // Enables Alternate-Protocol when the port is user controlled (> 1024).
565 const char kEnableUserAlternateProtocolPorts[] =
566 "enable-user-controlled-alternate-protocol-ports";
568 // Enables a new "web app" style frame for hosted apps (including bookmark
569 // apps).
570 extern const char kEnableWebAppFrame[] = "enable-web-app-frame";
572 // Enables the Website Settings page on the Settings page.
573 const char kEnableWebsiteSettingsManager[] = "enable-website-settings-manager";
575 // Enables synchronizing WiFi credentials across devices, using Chrome Sync.
576 const char kEnableWifiCredentialSync[] = "enable-wifi-credential-sync";
578 // Values for the kExtensionContentVerification flag.
579 // See ContentVerifierDelegate::Mode for more explanation.
580 const char kExtensionContentVerificationBootstrap[] = "bootstrap";
581 const char kExtensionContentVerificationEnforceStrict[] = "enforce_strict";
582 const char kExtensionContentVerificationEnforce[] = "enforce";
584 // Name of the command line flag to force content verification to be on in one
585 // of various modes.
586 const char kExtensionContentVerification[] = "extension-content-verification";
588 // Turns on extension install verification if it would not otherwise have been
589 // turned on.
590 const char kExtensionsInstallVerification[] = "extensions-install-verification";
592 // Specifies a comma-separated list of extension ids that should be forced to
593 // be treated as not from the webstore when doing install verification.
594 const char kExtensionsNotWebstore[] = "extensions-not-webstore";
596 // Frequency in seconds for Extensions auto-update.
597 const char kExtensionsUpdateFrequency[] = "extensions-update-frequency";
599 // Fakes the channel of the browser for purposes of Variations filtering. This
600 // is to be used for testing only. Possible values are "stable", "beta", "dev"
601 // and "canary". Note that this only applies if the browser's reported channel
602 // is UNKNOWN.
603 const char kFakeVariationsChannel[] = "fake-variations-channel";
605 // If this flag is present then this command line is being delegated to an
606 // already running chrome process via the fast path, ie: before chrome.dll is
607 // loaded. It is useful to tell the difference for tracking purposes.
608 const char kFastStart[] = "fast-start";
610 // These two flags are added around the switches about:flags adds to the
611 // command line. This is useful to see which switches were added by about:flags
612 // on about:version. They don't have any effect.
613 const char kFlagSwitchesBegin[] = "flag-switches-begin";
614 const char kFlagSwitchesEnd[] = "flag-switches-end";
616 // Forces application mode. This hides certain system UI elements and forces
617 // the app to be installed if it hasn't been already.
618 const char kForceAppMode[] = "force-app-mode";
620 // This option can be used to force parameters of field trials when testing
621 // changes locally. The argument is a list of key/value pairs prefixed by
622 // Trial/Group pair. The following shows setting parameters to 2 experiments
623 // where in the first, it forces "id" to be "foo" for the "Enabled" group of
624 // the "EnhancedBookmarks" trial:
625 // "EnhancedBookmarks.Enabled:id/foo,Experiment2.Group1:key1/value1"
626 // Trial names, groups names, parameter names, and value should all be URL
627 // escaped for all non-alphanumeric characters.
628 const char kForceFieldTrialParams[] = "force-fieldtrial-params";
630 // Displays the First Run experience when the browser is started, regardless of
631 // whether or not it's actually the First Run (this overrides kNoFirstRun).
632 const char kForceFirstRun[] = "force-first-run";
634 // Forces additional Chrome Variation Ids that will be sent in X-Client-Data
635 // header, specified as a 64-bit encoded list of numeric experiment ids. Ids
636 // prefixed with the character "t" will be treated as Trigger Variation Ids.
637 const char kForceVariationIds[] = "force-variation-ids";
639 // Enables grouping websites by domain and filtering them by period.
640 const char kHistoryEnableGroupByDomain[] = "enable-grouped-history";
642 // Specifies which page will be displayed in newly-opened tabs. We need this
643 // for testing purposes so that the UI tests don't depend on what comes up for
644 // http://google.com.
645 const char kHomePage[] = "homepage";
647 // Comma-separated list of rules that control how hostnames are mapped.
649 // For example:
650 // "MAP * 127.0.0.1" --> Forces all hostnames to be mapped to 127.0.0.1
651 // "MAP *.google.com proxy" --> Forces all google.com subdomains to be
652 // resolved to "proxy".
653 // "MAP test.com [::1]:77 --> Forces "test.com" to resolve to IPv6 loopback.
654 // Will also force the port of the resulting
655 // socket address to be 77.
656 // "MAP * baz, EXCLUDE www.google.com" --> Remaps everything to "baz",
657 // except for "www.google.com".
659 // These mappings apply to the endpoint host in a net::URLRequest (the TCP
660 // connect and host resolver in a direct connection, and the CONNECT in an http
661 // proxy connection, and the endpoint host in a SOCKS proxy connection).
662 const char kHostRules[] = "host-rules";
664 // The maximum number of retry attempts to resolve the host. Set this to zero
665 // to disable host resolver retry attempts.
666 const char kHostResolverRetryAttempts[] = "host-resolver-retry-attempts";
668 // Causes net::URLFetchers to ignore requests for SSL client certificates,
669 // causing them to attempt an unauthenticated SSL/TLS session. This is intended
670 // for use when testing various service URLs (eg: kPromoServerURL, kSbURLPrefix,
671 // kSyncServiceURL, etc)
672 const char kIgnoreUrlFetcherCertRequests[] =
673 "ignore-urlfetcher-cert-requests";
675 // Causes the browser to launch directly in incognito mode.
676 const char kIncognito[] = "incognito";
678 // Causes Chrome to initiate an installation flow for the given app.
679 const char kInstallChromeApp[] = "install-chrome-app";
681 // Causes Chrome to attempt to get metadata from the webstore for the
682 // app/extension ID given, and then prompt the user to download and install it.
683 // This is allowed *only* for ephemeral apps. All other ids will be ignored.
684 const char kInstallEphemeralAppFromWebstore[] =
685 "install-ephemeral-app-from-webstore";
687 // A list of whitelists to install for a supervised user, for testing.
688 // The list is of the following form: <id>[:<name>],[<id>[:<name>],...]
689 const char kInstallSupervisedUserWhitelists[] =
690 "install-supervised-user-whitelists";
692 // Marks a renderer as an Instant process.
693 const char kInstantProcess[] = "instant-process";
695 // Invalidation service should use GCM network channel even if experiment is not
696 // enabled.
697 const char kInvalidationUseGCMChannel[] = "invalidation-use-gcm-channel";
699 // Disable latest shipping ECMAScript 6 features.
700 const char kDisableJavaScriptHarmonyShipping[] =
701 "disable-javascript-harmony-shipping";
703 // Enables experimental Harmony (ECMAScript 6) features.
704 const char kJavaScriptHarmony[] = "javascript-harmony";
706 // Dumps IPC messages sent from renderer processes to the browser process to
707 // the given directory. Used primarily to gather samples for IPC fuzzing.
708 const char kIpcDumpDirectory[] = "ipc-dump-directory";
710 // Used for testing - keeps browser alive after last browser window closes.
711 const char kKeepAliveForTest[] = "keep-alive-for-test";
713 // Enable Kiosk mode.
714 const char kKioskMode[] = "kiosk";
716 // Print automatically in kiosk mode. |kKioskMode| must be set as well.
717 // See http://crbug.com/31395.
718 const char kKioskModePrinting[] = "kiosk-printing";
720 // Comma-separated list of directories with component extensions to load.
721 const char kLoadComponentExtension[] = "load-component-extension";
723 // Loads an extension from the specified directory.
724 const char kLoadExtension[] = "load-extension";
726 // Makes Chrome default browser
727 const char kMakeDefaultBrowser[] = "make-default-browser";
729 // Use to opt-in to marking HTTP as non-secure.
730 const char kMarkNonSecureAs[] = "mark-non-secure-as";
731 const char kMarkNonSecureAsNeutral[] = "neutral";
732 const char kMarkNonSecureAsDubious[] = "dubious";
733 const char kMarkNonSecureAsNonSecure[] = "non-secure";
735 // Forces the maximum disk space to be used by the media cache, in bytes.
736 const char kMediaCacheSize[] = "media-cache-size";
738 // Enables histograming of tasks served by MessageLoop. See
739 // about:histograms/Loop for results, which show frequency of messages on each
740 // thread, including APC count, object signalling count, etc.
741 const char kMessageLoopHistogrammer[] = "message-loop-histogrammer";
743 // Enables the recording of metrics reports but disables reporting. In contrast
744 // to kDisableMetrics, this executes all the code that a normal client would
745 // use for reporting, except the report is dropped rather than sent to the
746 // server. This is useful for finding issues in the metrics code during UI and
747 // performance tests.
748 const char kMetricsRecordingOnly[] = "metrics-recording-only";
750 // Allows setting a different destination ID for connection-monitoring GCM
751 // messages. Useful when running against a non-prod management server.
752 const char kMonitoringDestinationID[] = "monitoring-destination-id";
754 // Sets the granularity of events to capture in the network log. The mode can be
755 // set to one of the following values:
756 // "Default"
757 // "IncludeCookiesAndCredentials"
758 // "IncludeSocketBytes"
760 // See the functions of the corresponding name in net_log_capture_mode.h for a
761 // description of their meaning.
762 const char kNetLogCaptureMode[] = "net-log-capture-mode";
764 // Disables the default browser check. Useful for UI/browser tests where we
765 // want to avoid having the default browser info-bar displayed.
766 const char kNoDefaultBrowserCheck[] = "no-default-browser-check";
768 // By default, an https page can load images, fonts or frames from an http
769 // page. This switch overrides this to block this lesser mixed-content problem.
770 const char kNoDisplayingInsecureContent[] = "no-displaying-insecure-content";
772 // Disables all experiments set on about:flags. Does not disable about:flags
773 // itself. Useful if an experiment makes chrome crash at startup: One can start
774 // chrome with --no-experiments, disable the problematic lab at about:flags and
775 // then restart chrome without this switch again.
776 const char kNoExperiments[] = "no-experiments";
778 // Skip First Run tasks, whether or not it's actually the First Run. Overridden
779 // by kForceFirstRun. This does not drop the First Run sentinel and thus doesn't
780 // prevent first run from occuring the next time chrome is launched without this
781 // flag.
782 const char kNoFirstRun[] = "no-first-run";
784 // Don't send hyperlink auditing pings
785 const char kNoPings[] = "no-pings";
787 // Don't use a proxy server, always make direct connections. Overrides any
788 // other proxy server flags that are passed.
789 const char kNoProxyServer[] = "no-proxy-server";
791 // Disables the service process from adding itself as an autorun process. This
792 // does not delete existing autorun registrations, it just prevents the service
793 // from registering a new one.
794 const char kNoServiceAutorun[] = "no-service-autorun";
796 // Does not automatically open a browser window on startup (used when
797 // launching Chrome for the purpose of hosting background apps).
798 const char kNoStartupWindow[] = "no-startup-window";
800 // Disables checking whether we received an acknowledgment when registering
801 // a supervised user. Also disables the timeout during registration that waits
802 // for the ack. Useful when debugging against a server that does not
803 // support notifications.
804 const char kNoSupervisedUserAcknowledgmentCheck[] =
805 "no-managed-user-acknowledgment-check";
807 // Specifies the maximum number of threads to use for running the Proxy
808 // Autoconfig (PAC) script.
809 const char kNumPacThreads[] = "num-pac-threads";
811 // Launches URL in new browser window.
812 const char kOpenInNewWindow[] = "new-window";
814 // Force use of QUIC for requests to the specified origin.
815 const char kOriginToForceQuicOn[] = "origin-to-force-quic-on";
817 // The time that a new chrome process which is delegating to an already running
818 // chrome process started. (See ProcessSingleton for more details.)
819 const char kOriginalProcessStartTime[] = "original-process-start-time";
821 // Packages an extension to a .crx installable file from a given directory.
822 const char kPackExtension[] = "pack-extension";
824 // Optional PEM private key to use in signing packaged .crx.
825 const char kPackExtensionKey[] = "pack-extension-key";
827 // Specifies the path to the user data folder for the parent profile.
828 const char kParentProfile[] = "parent-profile";
830 // Development flag for permission request API. This flag is needed until
831 // the API is finalized.
832 // TODO(bauerb): Remove when this flag is not needed anymore.
833 const char kPermissionRequestApiScope[] = "permission-request-api-scope";
835 // Development flag for permission request API. This flag is needed until
836 // the API is finalized.
837 // TODO(bauerb): Remove when this flag is not needed anymore.
838 const char kPermissionRequestApiUrl[] = "permission-request-api-url";
840 // Use the PPAPI (Pepper) Flash found at the given path.
841 const char kPpapiFlashPath[] = "ppapi-flash-path";
843 // Report the given version for the PPAPI (Pepper) Flash. The version should be
844 // numbers separated by '.'s (e.g., "12.3.456.78"). If not specified, it
845 // defaults to "10.2.999.999".
846 const char kPpapiFlashVersion[] = "ppapi-flash-version";
848 // Triggers prerendering of pages from suggestions in the omnibox. Only has an
849 // effect when Instant is either disabled or restricted to search, and when
850 // prerender is enabled.
851 const char kPrerenderFromOmnibox[] = "prerender-from-omnibox";
852 // These are the values the kPrerenderFromOmnibox switch may have, as in
853 // "--prerender-from-omnibox=auto". auto: Allow field trial selection.
854 const char kPrerenderFromOmniboxSwitchValueAuto[] = "auto";
855 // disabled: No prerendering.
856 const char kPrerenderFromOmniboxSwitchValueDisabled[] = "disabled";
857 // enabled: Guaranteed prerendering.
858 const char kPrerenderFromOmniboxSwitchValueEnabled[] = "enabled";
859 // Controls speculative prerendering of pages, and content prefetching. Both
860 // are dispatched from <link rel=prefetch href=...> elements.
861 const char kPrerenderMode[] = "prerender";
862 // These are the values the kPrerenderMode switch may have, as in
863 // "--prerender=disabled".
864 // disabled: No prerendering.
865 const char kPrerenderModeSwitchValueDisabled[] = "disabled";
866 // enabled: Prerendering.
867 const char kPrerenderModeSwitchValueEnabled[] = "enabled";
869 // Use IPv6 only for privet HTTP.
870 const char kPrivetIPv6Only[] = "privet-ipv6-only";
872 // Outputs the product version information and quit. Used as an internal api to
873 // detect the installed version of Chrome on Linux.
874 const char kProductVersion[] = "product-version";
876 // Selects directory of profile to associate with the first browser launched.
877 const char kProfileDirectory[] = "profile-directory";
879 // Starts the sampling based profiler for the browser process at startup. This
880 // will only work if chrome has been built with the gyp variable profiling=1.
881 // The output will go to the value of kProfilingFile.
882 const char kProfilingAtStart[] = "profiling-at-start";
884 // Specifies a location for profiling output. This will only work if chrome has
885 // been built with the gyp variable profiling=1.
887 // {pid} if present will be replaced by the pid of the process.
888 // {count} if present will be incremented each time a profile is generated
889 // for this process.
890 // The default is chrome-profile-{pid}.
891 const char kProfilingFile[] = "profiling-file";
893 // Controls whether profile data is periodically flushed to a file. Normally
894 // the data gets written on exit but cases exist where chrome doesn't exit
895 // cleanly (especially when using single-process). A time in seconds can be
896 // specified.
897 const char kProfilingFlush[] = "profiling-flush";
899 // Forces proxy auto-detection.
900 const char kProxyAutoDetect[] = "proxy-auto-detect";
902 // Specifies a list of hosts for whom we bypass proxy settings and use direct
903 // connections. Ignored if --proxy-auto-detect or --no-proxy-server are also
904 // specified. This is a comma-separated list of bypass rules. See:
905 // "net/proxy/proxy_bypass_rules.h" for the format of these rules.
906 const char kProxyBypassList[] = "proxy-bypass-list";
908 // Uses the pac script at the given URL
909 const char kProxyPacUrl[] = "proxy-pac-url";
911 // Uses a specified proxy server, overrides system settings. This switch only
912 // affects HTTP and HTTPS requests.
913 const char kProxyServer[] = "proxy-server";
915 // Specifies a comma separated list of QUIC connection options to send to
916 // the server.
917 const char kQuicConnectionOptions[] = "quic-connection-options";
919 // Specifies the maximum length for a QUIC packet.
920 const char kQuicMaxPacketLength[] = "quic-max-packet-length";
922 // Specifies the version of QUIC to use.
923 const char kQuicVersion[] = "quic-version";
925 // Remember user proceeds through SSL interstitials for a specified amount of
926 // time. In particular, remember these decisions through session restart. The
927 // time delta to remember certificates should be specified in seconds.
928 const char kRememberCertErrorDecisions[] = "remember-cert-error-decisions";
930 // If set, the app list will forget it has been installed on startup. Note this
931 // doesn't prevent the app list from running, it just makes Chrome think the app
932 // list hasn't been enabled (as in kEnableAppList) yet.
933 const char kResetAppListInstallState[] = "reset-app-list-install-state";
935 // Indicates the last session should be restored on startup. This overrides the
936 // preferences value and is primarily intended for testing. The value of this
937 // switch is the number of tabs to wait until loaded before 'load completed' is
938 // sent to the ui_test.
939 const char kRestoreLastSession[] = "restore-last-session";
941 // Disable saving pages as HTML-only, disable saving pages as HTML Complete
942 // (with a directory of sub-resources). Enable only saving pages as MHTML.
943 // See http://crbug.com/120416 for how to remove this switch.
944 const char kSavePageAsMHTML[] = "save-page-as-mhtml";
946 // If present, safebrowsing only performs update when
947 // SafeBrowsingProtocolManager::ForceScheduleNextUpdate() is explicitly called.
948 // This is used for testing only.
949 const char kSbDisableAutoUpdate[] = "safebrowsing-disable-auto-update";
951 // TODO(lzheng): Remove this flag once the feature works fine
952 // (http://crbug.com/74848).
954 // Disables safebrowsing feature that checks download url and downloads
955 // content's hash to make sure the content are not malicious.
956 const char kSbDisableDownloadProtection[] =
957 "safebrowsing-disable-download-protection";
959 // Disables safebrowsing feature that checks for blacklisted extensions.
960 const char kSbDisableExtensionBlacklist[] =
961 "safebrowsing-disable-extension-blacklist";
963 // Causes the process to run as a service process.
964 const char kServiceProcess[] = "service";
966 // If true the app list will be shown.
967 const char kShowAppList[] = "show-app-list";
969 // Command line flag offering a "Show saved copy" option to the user if offline.
970 // The various modes are disabled, primary, or secondary. Primary/secondary
971 // refers to button placement (for experiment).
972 const char kShowSavedCopy[] = "show-saved-copy";
974 // Values for the kShowSavedCopy flag.
975 const char kEnableShowSavedCopyPrimary[] = "primary";
976 const char kEnableShowSavedCopySecondary[] = "secondary";
977 const char kDisableShowSavedCopy[] = "disable";
979 // Does not show an infobar when an extension attaches to a page using
980 // chrome.debugger page. Required to attach to extension background pages.
981 const char kSilentDebuggerExtensionAPI[] = "silent-debugger-extension-api";
983 // Causes Chrome to launch without opening any windows by default. Useful if
984 // one wishes to use Chrome as an ash server.
985 const char kSilentLaunch[] = "silent-launch";
987 // Simulates that elevation is needed to recover upgrade channel.
988 const char kSimulateElevatedRecovery[] = "simulate-elevated-recovery";
990 // Simulates a critical update being available.
991 const char kSimulateCriticalUpdate[] = "simulate-critical-update";
993 // Simulates that current version is outdated.
994 const char kSimulateOutdated[] = "simulate-outdated";
996 // Simulates that current version is outdated and auto-update is off.
997 const char kSimulateOutdatedNoAU[] = "simulate-outdated-no-au";
999 // Simulates an update being available.
1000 const char kSimulateUpgrade[] = "simulate-upgrade";
1002 // Speculative resource prefetching.
1003 const char kSpeculativeResourcePrefetching[] =
1004 "speculative-resource-prefetching";
1006 // Speculative resource prefetching is disabled.
1007 const char kSpeculativeResourcePrefetchingDisabled[] = "disabled";
1009 // Speculative resource prefetching will only learn about resources that need to
1010 // be prefetched but will not prefetch them.
1011 const char kSpeculativeResourcePrefetchingLearning[] = "learning";
1013 // Speculative resource prefetching is enabled.
1014 const char kSpeculativeResourcePrefetchingEnabled[] = "enabled";
1016 #if defined(ENABLE_SPELLCHECK)
1017 // Enables auto correction for misspelled words.
1018 const char kEnableSpellingAutoCorrect[] = "enable-spelling-auto-correct";
1020 // Enables participation in the field trial for user feedback to spelling
1021 // service.
1022 const char kEnableSpellingFeedbackFieldTrial[] =
1023 "enable-spelling-feedback-field-trial";
1025 // Specifies the URL where spelling service feedback data will be sent instead
1026 // of the default URL. This switch is for temporary testing only.
1027 // TODO(rouslan): Remove this flag when feedback testing is complete. Revisit by
1028 // August 2013.
1029 const char kSpellingServiceFeedbackUrl[] = "spelling-service-feedback-url";
1031 // Specifies the number of seconds between sending batches of feedback to
1032 // spelling service. The default is 30 minutes. The minimum is 5 seconds. This
1033 // switch is for temporary testing only.
1034 // TODO(rouslan): Remove this flag when feedback testing is complete. Revisit by
1035 // August 2013.
1036 const char kSpellingServiceFeedbackIntervalSeconds[] =
1037 "spelling-service-feedback-interval-seconds";
1038 #endif
1040 // Specifies the maximum SSL/TLS version ("ssl3", "tls1", "tls1.1", or
1041 // "tls1.2").
1042 const char kSSLVersionMax[] = "ssl-version-max";
1044 // Specifies the minimum SSL/TLS version ("ssl3", "tls1", "tls1.1", or
1045 // "tls1.2").
1046 const char kSSLVersionMin[] = "ssl-version-min";
1048 // Specifies the minimum SSL/TLS version ("ssl3", "tls1", "tls1.1", or
1049 // "tls1.2") that TLS fallback will accept.
1050 const char kSSLVersionFallbackMin[] = "ssl-version-fallback-min";
1052 // These values aren't switches, but rather the values that kSSLVersionMax,
1053 // kSSLVersionMin and kSSLVersionFallbackMin can have.
1054 const char kSSLVersionSSLv3[] = "ssl3";
1055 const char kSSLVersionTLSv1[] = "tls1";
1056 const char kSSLVersionTLSv11[] = "tls1.1";
1057 const char kSSLVersionTLSv12[] = "tls1.2";
1059 // Starts the browser maximized, regardless of any previous settings.
1060 const char kStartMaximized[] = "start-maximized";
1062 // Sets the supervised user ID for any loaded or newly created profile to the
1063 // given value. Pass an empty string to mark the profile as non-supervised.
1064 // Used for testing.
1065 const char kSupervisedUserId[] = "managed-user-id";
1067 // Enables/disables SafeSites filtering for supervised users. Possible values
1068 // are "enabled", "disabled", "blacklist-only", and "online-check-only".
1069 const char kSupervisedUserSafeSites[] = "supervised-user-safesites";
1071 // Used to authenticate requests to the Sync service for supervised users.
1072 // Setting this switch also causes Sync to be set up for a supervised user.
1073 const char kSupervisedUserSyncToken[] = "managed-user-sync-token";
1075 // This flag causes sync to retry very quickly (see polling_constants.h) the
1076 // when it encounters an error, as the first step towards exponential backoff.
1077 const char kSyncShortInitialRetryOverride[] =
1078 "sync-short-initial-retry-override";
1080 // Overrides the default server used for profile sync.
1081 const char kSyncServiceURL[] = "sync-url";
1083 // Enables deferring sync backend initialization until user initiated changes
1084 // occur.
1085 const char kSyncDisableDeferredStartup[] = "sync-disable-deferred-startup";
1087 // Allows overriding the deferred init fallback timeout.
1088 const char kSyncDeferredStartupTimeoutSeconds[] =
1089 "sync-deferred-startup-timeout-seconds";
1091 // Enables feature to avoid unnecessary GetUpdate requests.
1092 const char kSyncEnableGetUpdateAvoidance[] =
1093 "sync-enable-get-update-avoidance";
1095 // Disable data backup when user's not signed in.
1096 const char kSyncDisableBackup[] = "disable-sync-backup";
1098 // Disable sync rollback.
1099 const char kSyncDisableRollback[] = "disable-sync-rollback";
1101 // Passes the name of the current running automated test to Chrome.
1102 const char kTestName[] = "test-name";
1104 // Disables same-origin check on HTTP resources pushed via a SPDY proxy.
1105 // The value is the host:port of the trusted proxy.
1106 const char kTrustedSpdyProxy[] = "trusted-spdy-proxy";
1108 // Experimental. Shows a dialog asking the user to try chrome. This flag is to
1109 // be used only by the upgrade process.
1110 const char kTryChromeAgain[] = "try-chrome-again";
1112 // Overrides per-origin quota settings to unlimited storage for any
1113 // apps/origins. This should be used only for testing purpose.
1114 const char kUnlimitedStorage[] = "unlimited-storage";
1116 // Treat given (insecure) origins as secure origins. Multiple origins can be
1117 // supplied. Has no effect unless --user-data-dir is also supplied.
1118 // Example:
1119 // --unsafety-treat-insecure-origin-as-secure=http://a.test,http://b.test
1120 // --user-data-dir=/test/only/profile/dir
1121 const char kUnsafetyTreatInsecureOriginAsSecure[] =
1122 "unsafety-treat-insecure-origin-as-secure";
1124 // Uses Spdy for the transport protocol instead of HTTP. This is a temporary
1125 // testing flag.
1126 const char kUseSpdy[] = "use-spdy";
1128 // A string used to override the default user agent with a custom one.
1129 const char kUserAgent[] = "user-agent";
1131 // Specifies the user data directory, which is where the browser will look for
1132 // all of its state.
1133 const char kUserDataDir[] = "user-data-dir";
1135 // Examines a .crx for validity and prints the result.
1136 const char kValidateCrx[] = "validate-crx";
1138 // Uses experimental simple cache backend if possible.
1139 const char kUseSimpleCacheBackend[] = "use-simple-cache-backend";
1141 // Enables using an in-process Mojo service for the v8 proxy resolver.
1142 const char kV8PacMojoInProcess[] = "v8-pac-mojo-in-process";
1144 // Enables using an out-of-process Mojo service for the v8 proxy resolver.
1145 const char kV8PacMojoOutOfProcess[] = "v8-pac-mojo-out-of-process";
1147 // Specifies a custom URL for the server which reports variation data to the
1148 // client. Specifying this switch enables the Variations service on
1149 // unofficial builds. See variations_service.cc.
1150 const char kVariationsServerURL[] = "variations-server-url";
1152 // Prints version information and quits.
1153 const char kVersion[] = "version";
1155 // Specify the initial window position: --window-position=x,y
1156 const char kWindowPosition[] = "window-position";
1158 // Specify the initial window size: --window-size=w,h
1159 const char kWindowSize[] = "window-size";
1161 // Uses WinHTTP to fetch and evaluate PAC scripts. Otherwise the default is to
1162 // use Chromium's network stack to fetch, and V8 to evaluate.
1163 const char kWinHttpProxyResolver[] = "winhttp-proxy-resolver";
1165 // Specifies which category option was clicked in the Windows Jumplist that
1166 // resulted in a browser startup.
1167 const char kWinJumplistAction[] = "win-jumplist-action";
1169 #if defined(OS_ANDROID)
1170 // Disables support for playing videos on Chromecast devices.
1171 const char kDisableCast[] = "disable-cast";
1173 // Disables Contextual Search.
1174 const char kDisableContextualSearch[] = "disable-contextual-search";
1176 // Disables zero suggest experiment on Dev channel.
1177 const char kDisableZeroSuggest[] = "disable-zero-suggest";
1179 // Enable the accessibility tab switcher.
1180 const char kEnableAccessibilityTabSwitcher[] =
1181 "enable-accessibility-tab-switcher";
1183 // Enables Contextual Search.
1184 const char kEnableContextualSearch[] = "enable-contextual-search";
1186 // Enables the DOM distiller animated button UI for Android.
1187 const char kEnableDomDistillerButtonAnimation[] =
1188 "enable-dom-distiller-button-animation";
1190 // Enables instant search clicks feature.
1191 const char kEnableInstantSearchClicks[] = "enable-instant-search-clicks";
1193 // Enables context-sensitive reader mode button in the toolbar.
1194 const char kEnableReaderModeToolbarIcon[] =
1195 "enable-reader-mode-toolbar-icon";
1197 // Enables zero suggest functionality on Dev channel, showing most visited
1198 // sites as default suggestions.
1199 const char kEnableZeroSuggestMostVisited[] =
1200 "enable-zero-suggest-most-visited";
1202 // Enable zero suggest functionality on Dev channel, showing most visited
1203 // sites on non-search-result pages as default suggestions.
1204 const char kEnableZeroSuggestMostVisitedWithoutSerp[] =
1205 "enable-zero-suggest-most-visited-without-serp";
1207 // Triggers prerendering of search base page to prefetch results for the typed
1208 // omnibox query. Only has an effect when prerender is enabled.
1209 const char kPrefetchSearchResults[] = "prefetch-search-results";
1210 #endif // defined(OS_ANDROID)
1212 #if defined(USE_ASH)
1213 const char kOpenAsh[] = "open-ash";
1214 #endif
1216 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_CHROMEOS)
1217 // These flags show the man page on Linux. They are equivalent to each
1218 // other.
1219 const char kHelp[] = "help";
1220 const char kHelpShort[] = "h";
1222 // Specifies which password store to use (detect, default, gnome, kwallet).
1223 const char kPasswordStore[] = "password-store";
1224 #endif
1226 #if defined(OS_LINUX) && !defined(OS_CHROMEOS)
1227 // Triggers migration of user data directory to another directory
1228 // specified as a parameter. The migration is done under singleton lock,
1229 // and sanity checks are made to avoid corrupting the profile.
1230 // The browser exits after migration is complete.
1231 const char kMigrateDataDirForSxS[] = "migrate-data-dir-for-sxs";
1232 #endif // defined(OS_LINUX) && !defined(OS_CHROMEOS)
1234 #if defined(OS_MACOSX)
1235 // Prevents Chrome from quitting when Chrome Apps are open.
1236 const char kAppsKeepChromeAliveInTests[] = "apps-keep-chrome-alive-in-tests";
1238 // Shows a notification when quitting Chrome with hosted apps running. Default
1239 // behavior is to also quit all hosted apps.
1240 const char kHostedAppQuitNotification[] = "enable-hosted-app-quit-notification";
1242 // Disables app shim creation for hosted apps on Mac.
1243 const char kDisableHostedAppShimCreation[] = "disable-hosted-app-shim-creation";
1245 // Forcibly disables Lion-style on newer OSes, to allow developers to test the
1246 // older, SnowLeopard-style fullscreen.
1247 const char kDisableSystemFullscreenForTesting[] =
1248 "disable-system-fullscreen-for-testing";
1250 // Enables Translate experimental new UX which replaces the infobar.
1251 const char kEnableTranslateNewUX[] = "enable-translate-new-ux";
1253 // This is how the metrics client ID is passed from the browser process to its
1254 // children. With Crashpad, the metrics client ID is distinct from the crash
1255 // client ID.
1256 const char kMetricsClientID[] = "metrics-client-id";
1258 // A process type (switches::kProcessType) that relaunches the browser. See
1259 // chrome/browser/mac/relauncher.h.
1260 const char kRelauncherProcess[] = "relauncher";
1261 #endif // defined(OS_MACOSX)
1263 // Use bubbles for content permissions requests instead of infobars.
1264 const char kEnablePermissionsBubbles[] = "enable-permissions-bubbles";
1266 #if defined(OS_WIN)
1267 // Fallback to XPS. By default connector uses CDD.
1268 const char kEnableCloudPrintXps[] = "enable-cloud-print-xps";
1270 // Force-enables the profile shortcut manager. This is needed for tests since
1271 // they use a custom-user-data-dir which disables this.
1272 const char kEnableProfileShortcutManager[] = "enable-profile-shortcut-manager";
1274 // For the DelegateExecute verb handler to launch Chrome in metro mode on
1275 // Windows 8 and higher. Used when relaunching metro Chrome.
1276 const char kForceImmersive[] = "force-immersive";
1278 // Whether or not the browser should warn if the profile is on a network share.
1279 // This flag is only relevant for Windows currently.
1280 const char kNoNetworkProfileWarning[] = "no-network-profile-warning";
1282 // For the DelegateExecute verb handler to launch Chrome in desktop mode on
1283 // Windows 8 and higher. Used when relaunching metro Chrome.
1284 const char kForceDesktop[] = "force-desktop";
1286 // Makes Windows happy by allowing it to show "Enable access to this program"
1287 // checkbox in Add/Remove Programs->Set Program Access and Defaults. This only
1288 // shows an error box because the only way to hide Chrome is by uninstalling
1289 // it.
1290 const char kHideIcons[] = "hide-icons";
1292 // Relaunches metro Chrome on Windows 8 and higher using a given shortcut.
1293 const char kRelaunchShortcut[] = "relaunch-shortcut";
1295 // See kHideIcons.
1296 const char kShowIcons[] = "show-icons";
1298 // Runs un-installation steps that were done by chrome first-run.
1299 const char kUninstall[] = "uninstall";
1301 // Requests that Chrome launch the Metro viewer process via the given appid
1302 // (which is assumed to be registered as default browser) and synchronously
1303 // connect to it.
1304 const char kViewerLaunchViaAppId[] = "viewer-launch-via-appid";
1306 // Waits for the given handle to be signaled before relaunching metro Chrome on
1307 // Windows 8 and higher.
1308 const char kWaitForMutex[] = "wait-for-mutex";
1310 // Indicates that chrome was launched to service a search request in Windows 8.
1311 const char kWindows8Search[] = "windows8-search";
1312 #endif // defined(OS_WIN)
1314 #if defined(ENABLE_IPC_FUZZER)
1315 // Specifies the testcase used by the IPC fuzzer.
1316 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase";
1317 #endif
1319 #if defined(ENABLE_PRINT_PREVIEW) && !defined(OFFICIAL_BUILD)
1320 // Enables support to debug printing subsystem.
1321 const char kDebugPrint[] = "debug-print";
1322 #endif
1324 #ifndef NDEBUG
1325 // Enables overriding the path of file manager extension.
1326 const char kFileManagerExtensionPath[] = "filemgr-ext-path";
1327 #endif
1329 bool AboutInSettingsEnabled() {
1330 return SettingsWindowEnabled() &&
1331 !base::CommandLine::ForCurrentProcess()->HasSwitch(
1332 ::switches::kDisableAboutInSettings);
1335 bool MdSettingsEnabled() {
1336 return base::CommandLine::ForCurrentProcess()->HasSwitch(
1337 ::switches::kEnableMaterialDesignSettings);
1340 bool MediaRouterEnabled() {
1341 return base::CommandLine::ForCurrentProcess()->HasSwitch(
1342 ::switches::kEnableMediaRouter);
1345 // Will return true as a default value if the "disable-new-offline-error-page"
1346 // command-line switch is not available.
1347 bool NewOfflineErrorPageEnabled() {
1348 return !base::CommandLine::ForCurrentProcess()->HasSwitch(
1349 ::switches::kDisableNewOfflineErrorPage);
1352 bool PdfMaterialUIEnabled() {
1353 if (base::CommandLine::ForCurrentProcess()->HasSwitch(kEnablePdfMaterialUI))
1354 return true;
1356 if (base::CommandLine::ForCurrentProcess()->HasSwitch(kDisablePdfMaterialUI))
1357 return false;
1359 // Default.
1360 return false;
1363 bool SettingsWindowEnabled() {
1364 #if defined(OS_CHROMEOS)
1365 return !base::CommandLine::ForCurrentProcess()->HasSwitch(
1366 ::switches::kDisableSettingsWindow);
1367 #else
1368 return base::CommandLine::ForCurrentProcess()->HasSwitch(
1369 ::switches::kEnableSettingsWindow);
1370 #endif
1373 #if defined(OS_CHROMEOS)
1374 bool PowerOverlayEnabled() {
1375 return base::CommandLine::ForCurrentProcess()->HasSwitch(
1376 ::switches::kEnablePowerOverlay);
1378 #endif
1380 // -----------------------------------------------------------------------------
1381 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1383 // You were going to just dump your switches here, weren't you? Instead, please
1384 // put them in alphabetical order above, or in order inside the appropriate
1385 // ifdef at the bottom. The order should match the header.
1386 // -----------------------------------------------------------------------------
1388 } // namespace switches