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

Unified Diff: chrome/browser/android/chrome_feature_list.cc

Issue 2149453004: Implement first version of OfflinePageSuggestionsProvider (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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: chrome/browser/android/chrome_feature_list.cc
diff --git a/chrome/browser/android/chrome_feature_list.cc b/chrome/browser/android/chrome_feature_list.cc
index 5183b9b28a5ecad464f40272b88489e8d3758781..e577fa25e5cd0916f8ddd78f490e2e3c83d8818d 100644
--- a/chrome/browser/android/chrome_feature_list.cc
+++ b/chrome/browser/android/chrome_feature_list.cc
@@ -36,6 +36,7 @@ const base::Feature* kFeaturesExposedToJava[] = {
&kNTPMaterialDesign,
&kNTPOfflinePagesFeature,
&kNTPSnippetsFeature,
+ &kNTPOfflinePageSuggestionsFeature,
&kNTPToolbarFeature,
&kPhysicalWebFeature,
&kPhysicalWebIgnoreOtherClientsFeature,
@@ -61,6 +62,9 @@ const base::Feature kNTPSnippetsFeature {
"NTPSnippets", base::FEATURE_DISABLED_BY_DEFAULT
};
+const base::Feature kNTPOfflinePageSuggestionsFeature{
+ "NTPOfflinePageSuggestions", base::FEATURE_DISABLED_BY_DEFAULT};
Marc Treib 2016/07/14 12:16:53 nit: this is formatted differently than all the ot
Philipp Keck 2016/07/14 13:46:02 This is "git cl" formatted. Both the seemingly mis
Marc Treib 2016/07/14 16:13:16 Can we stay consistent with how the rest of the en
Philipp Keck 2016/07/15 09:08:41 Ok. For about_flags.cc, I don't want to reformat t
+
const base::Feature kNTPToolbarFeature {
"NTPToolbar", base::FEATURE_ENABLED_BY_DEFAULT
};

Powered by Google App Engine
This is Rietveld 408576698