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

Unified Diff: components/arc/arc_features.cc

Issue 2508713003: arc: Prepare ArcAuthEndpoint flag for finch experiment. (Closed)
Patch Set: Created 4 years, 1 month 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: components/arc/arc_features.cc
diff --git a/components/arc/arc_features.cc b/components/arc/arc_features.cc
index 5cf10d6beebbc6872403ed20fbc6e4093f21302e..1586331383d66e9da63232016b7ca384540051ce 100644
--- a/components/arc/arc_features.cc
+++ b/components/arc/arc_features.cc
@@ -8,7 +8,13 @@ namespace arc {
// Controls ACTION_BOOT_COMPLETED broadcast for third party applications on ARC.
// When disabled, third party apps will not receive this broadcast.
-const base::Feature kBootCompletedBroadcastFeature{
- "ArcBootCompletedBroadcast", base::FEATURE_ENABLED_BY_DEFAULT};
+const base::Feature kBootCompletedBroadcastFeature {
+ "ArcBootCompletedBroadcast", base::FEATURE_ENABLED_BY_DEFAULT
+};
+
+// Controls if Arc should use silent auth code request API.
+const base::Feature kArcUseAuthEndpointFeature {
Luis Héctor Chávez 2016/11/16 22:11:29 Same here, keep alphabetized.
khmel 2016/11/16 22:22:14 Done.
+ "ArcUseAuthEndpoint", base::FEATURE_DISABLED_BY_DEFAULT
+};
} // namespace arc

Powered by Google App Engine
This is Rietveld 408576698