Chromium Code Reviews| 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 |