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

Unified Diff: chromeos/chromeos_switches.cc

Issue 2671463002: Support new --arc-availability flag. (Closed)
Patch Set: Created 3 years, 11 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..2230253b9ccb8a206c8c2c70852c2d33761cebc7 100644
--- a/chromeos/chromeos_switches.cc
+++ b/chromeos/chromeos_switches.cc
@@ -63,6 +63,15 @@ 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.
Yusuke Sato 2017/02/02 18:14:06 .. The user can enable ARC only when it is enabled
hidehiko 2017/02/03 15:37:42 Done. I'd like to avoid "enable" for Finch so rewo
+// - 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 +225,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