diff options
author | khmel <khmel@chromium.org> | 2016-02-04 16:39:58 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-02-05 00:40:53 +0000 |
commit | da6004a58c8cd0113f3471c19a9e5d0f615b6c3f (patch) | |
tree | 5875692835087ee7583601227784456e52ff5be4 /chromeos | |
parent | 68a69cbe8cda4294e84a3e263e906bebaf049870 (diff) | |
download | chromium_src-da6004a58c8cd0113f3471c19a9e5d0f615b6c3f.zip chromium_src-da6004a58c8cd0113f3471c19a9e5d0f615b6c3f.tar.gz chromium_src-da6004a58c8cd0113f3471c19a9e5d0f615b6c3f.tar.bz2 |
arc: Provide Chrome switch that disables ARC UI for optin.
Most of the tests do not require GMS Core to be signed in. For this
tests we need simplified workflow without extra UI interaction.
BUG=584316
TEST=Start Chrome without new switch - no change in current workflow.
TEST=Start Chrome with new switch - all UI dialogs are skipped, no
Android Apps section in Chrome::Settings and ARC starts
automatically.
TEST=Tests cheets_ContainerSmokeTest, cheets_PerfBoot,
cheets_SettingsBridge pass with new switch.
Review URL: https://codereview.chromium.org/1670603002
Cr-Commit-Position: refs/heads/master@{#373683}
Diffstat (limited to 'chromeos')
-rw-r--r-- | chromeos/chromeos_switches.cc | 3 | ||||
-rw-r--r-- | chromeos/chromeos_switches.h | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/chromeos/chromeos_switches.cc b/chromeos/chromeos_switches.cc index 92a743d..7958d31 100644 --- a/chromeos/chromeos_switches.cc +++ b/chromeos/chromeos_switches.cc @@ -57,6 +57,9 @@ const char kDerelictDetectionTimeout[] = "derelict-detection-timeout"; // Time before a derelict machines starts demo mode. const char kDerelictIdleTimeout[] = "derelict-idle-timeout"; +// Disables ARC Opt-in verification process and ARC is enabled by default. +const char kDisableArcOptInVerification[] = "disable-arc-opt-in-verification"; + // Disables wallpaper boot animation (except of OOBE case). const char kDisableBootAnimation[] = "disable-boot-animation"; diff --git a/chromeos/chromeos_switches.h b/chromeos/chromeos_switches.h index 2d299b3..b4782ec 100644 --- a/chromeos/chromeos_switches.h +++ b/chromeos/chromeos_switches.h @@ -35,6 +35,7 @@ CHROMEOS_EXPORT extern const char kDbusStub[]; CHROMEOS_EXPORT extern const char kDbusUnstubClients[]; CHROMEOS_EXPORT extern const char kDerelictDetectionTimeout[]; CHROMEOS_EXPORT extern const char kDerelictIdleTimeout[]; +CHROMEOS_EXPORT extern const char kDisableArcOptInVerification[]; CHROMEOS_EXPORT extern const char kDisableBootAnimation[]; CHROMEOS_EXPORT extern const char kDisableCloudImport[]; CHROMEOS_EXPORT extern const char kDisableDemoMode[]; |