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

Unified Diff: chrome/browser/about_flags.cc

Issue 2670143004: Add flag for AIA fetching and enable on waterfall (Closed)
Patch Set: update histograms.xml 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
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | testing/variations/fieldtrial_testing_config.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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.
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | testing/variations/fieldtrial_testing_config.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698