Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2399)

Unified Diff: chromeos/chromeos_switches.cc

Issue 2671463002: Support new --arc-availability flag. (Closed)
Patch Set: Address comments. Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chromeos/chromeos_switches.cc
diff --git a/chromeos/chromeos_switches.cc b/chromeos/chromeos_switches.cc
index 48caceecf7371c867637db24d1f2a3161a965082..b66ea2be9524dad2da6d9910d317a1b1d38f0dde 100644
--- a/chromeos/chromeos_switches.cc
+++ b/chromeos/chromeos_switches.cc
@@ -63,6 +63,16 @@ const char kAppAutoLaunched[] = "app-auto-launched";
// Path for app's OEM manifest file.
const char kAppOemManifestFile[] = "app-mode-oem-manifest";
+// Signals ARC support status on this device. This can take one of the
+// following three values.
+// - none: ARC is not installed on this device. (default)
+// - installed: ARC is installed on this device, but not officially supported.
+// Users can enable ARC only when Finch experiment is turned on.
+// - official-support: ARC is installed and supported on this device. So users
+// can enable ARC via settings etc.
+const char kArcAvailability[] = "arc-availability";
+
+// DEPRECATED: Please use --arc-availability=installed.
// Signals the availability of the ARC instance on this device.
const char kArcAvailable[] = "arc-available";
@@ -216,6 +226,7 @@ const char kEnableAd[] = "enable-ad";
// Enables the Android Wallpapers App as the default app on Chrome OS.
const char kEnableAndroidWallpapersApp[] = "enable-android-wallpapers-app";
+// DEPRECATED. Please use --arc-availability=official-support.
// Enables starting the ARC instance upon session start.
const char kEnableArc[] = "enable-arc";

Powered by Google App Engine
This is Rietveld 408576698