| Index: chrome/browser/about_flags.cc
|
| diff --git a/chrome/browser/about_flags.cc b/chrome/browser/about_flags.cc
|
| index 23c52ab2af630b6eb8ad8130a36b68dda4aec4da..03d768a89493824b52e8b8e8e16086a6af813de1 100644
|
| --- a/chrome/browser/about_flags.cc
|
| +++ b/chrome/browser/about_flags.cc
|
| @@ -77,6 +77,7 @@
|
| #include "media/base/media_switches.h"
|
| #include "media/media_features.h"
|
| #include "media/midi/midi_switches.h"
|
| +#include "net/cert/cert_verify_proc_android.h"
|
| #include "ppapi/features/features.h"
|
| #include "printing/features/features.h"
|
| #include "ui/base/ui_base_switches.h"
|
| @@ -1837,10 +1838,9 @@ const FeatureEntry kFeatureEntries[] = {
|
| ntp_snippets::kStudyName)},
|
| {"override-ntp-suggestions-source", IDS_FLAGS_OVERRIDE_SNIPPETS_SOURCE_NAME,
|
| IDS_FLAGS_OVERRIDE_SNIPPETS_SOURCE_DESCRIPTION, kOsAndroid,
|
| - FEATURE_WITH_VARIATIONS_VALUE_TYPE(
|
| - ntp_snippets::kContentSuggestionsSource,
|
| - kNTPSnippetsFeatureVariations,
|
| - ntp_snippets::kStudyName)},
|
| + FEATURE_WITH_VARIATIONS_VALUE_TYPE(ntp_snippets::kContentSuggestionsSource,
|
| + kNTPSnippetsFeatureVariations,
|
| + ntp_snippets::kStudyName)},
|
| {"enable-ntp-snippets-increased-visibility",
|
| IDS_FLAGS_ENABLE_NTP_SNIPPETS_VISIBILITY_NAME,
|
| IDS_FLAGS_ENABLE_NTP_SNIPPETS_VISIBILITY_DESCRIPTION, kOsAndroid,
|
| @@ -2194,10 +2194,16 @@ const FeatureEntry kFeatureEntries[] = {
|
|
|
| #if defined(OS_CHROMEOS)
|
| {"show-arc-files-app", IDS_FLAGS_SHOW_ARC_FILES_APP_NAME,
|
| - IDS_FLAGS_SHOW_ARC_FILES_APP_DESCRIPTION, kOsCrOS,
|
| - FEATURE_VALUE_TYPE(arc::kShowArcFilesAppFeature)},
|
| + IDS_FLAGS_SHOW_ARC_FILES_APP_DESCRIPTION, kOsCrOS,
|
| + FEATURE_VALUE_TYPE(arc::kShowArcFilesAppFeature)},
|
| #endif // defined(OS_CHROMEOS)
|
|
|
| +#if defined(OS_ANDROID)
|
| + {"aia-fetching", IDS_FLAGS_AIA_FETCHING_NAME,
|
| + IDS_FLAGS_AIA_FETCHING_DESCRIPTION, kOsAndroid,
|
| + FEATURE_VALUE_TYPE(net::CertVerifyProcAndroid::kAIAFetchingFeature)},
|
| +#endif
|
| +
|
| // NOTE: Adding new command-line switches requires adding corresponding
|
| // entries to enum "LoginCustomFlags" in histograms.xml. See note in
|
| // histograms.xml and don't forget to run AboutFlagsHistogramTest unit test.
|
|
|