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

Side by Side Diff: chrome/browser/android/chrome_feature_list.cc

Issue 2593523005: Add an experimental standalone content suggestions UI. (Closed)
Patch Set: x Created 3 years, 11 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 unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/android/chrome_feature_list.h" 5 #include "chrome/browser/android/chrome_feature_list.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 8
9 #include <string> 9 #include <string>
10 10
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 &kCCTPostMessageAPI, 44 &kCCTPostMessageAPI,
45 &kChromeHomeFeature, 45 &kChromeHomeFeature,
46 &kContextualSearchSingleActions, 46 &kContextualSearchSingleActions,
47 &kDownloadsUiFeature, 47 &kDownloadsUiFeature,
48 &kImportantSitesInCBD, 48 &kImportantSitesInCBD,
49 &kImprovedA2HS, 49 &kImprovedA2HS,
50 &kNativeAndroidHistoryManager, 50 &kNativeAndroidHistoryManager,
51 &kNoCreditCardAbort, 51 &kNoCreditCardAbort,
52 &kNTPFakeOmniboxTextFeature, 52 &kNTPFakeOmniboxTextFeature,
53 &kNTPOfflinePagesFeature, 53 &kNTPOfflinePagesFeature,
54 &kNTPSuggestionsStandaloneUIFeature,
54 &kPhysicalWebFeature, 55 &kPhysicalWebFeature,
55 &kPhysicalWebIgnoreOtherClientsFeature, 56 &kPhysicalWebIgnoreOtherClientsFeature,
56 &kSpecialLocaleFeature, 57 &kSpecialLocaleFeature,
57 &kSpecialLocaleWrapper, 58 &kSpecialLocaleWrapper,
58 &kTabReparenting, 59 &kTabReparenting,
59 &kWebPaymentsModifiers, 60 &kWebPaymentsModifiers,
60 &ntp_snippets::kContentSuggestionsFeature, 61 &ntp_snippets::kContentSuggestionsFeature,
61 &ntp_snippets::kIncreasedVisibility, 62 &ntp_snippets::kIncreasedVisibility,
62 &ntp_snippets::kForeignSessionsSuggestionsFeature, 63 &ntp_snippets::kForeignSessionsSuggestionsFeature,
63 &ntp_snippets::kOfflineBadgeFeature, 64 &ntp_snippets::kOfflineBadgeFeature,
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 107
107 const base::Feature kNoCreditCardAbort{"NoCreditCardAbort", 108 const base::Feature kNoCreditCardAbort{"NoCreditCardAbort",
108 base::FEATURE_DISABLED_BY_DEFAULT}; 109 base::FEATURE_DISABLED_BY_DEFAULT};
109 110
110 const base::Feature kNTPFakeOmniboxTextFeature{ 111 const base::Feature kNTPFakeOmniboxTextFeature{
111 "NTPFakeOmniboxText", base::FEATURE_DISABLED_BY_DEFAULT}; 112 "NTPFakeOmniboxText", base::FEATURE_DISABLED_BY_DEFAULT};
112 113
113 const base::Feature kNTPOfflinePagesFeature{"NTPOfflinePages", 114 const base::Feature kNTPOfflinePagesFeature{"NTPOfflinePages",
114 base::FEATURE_ENABLED_BY_DEFAULT}; 115 base::FEATURE_ENABLED_BY_DEFAULT};
115 116
117 const base::Feature kNTPSuggestionsStandaloneUIFeature{
118 "NTPSuggestionsStandaloneUI", base::FEATURE_DISABLED_BY_DEFAULT};
119
116 const base::Feature kPhysicalWebFeature{"PhysicalWeb", 120 const base::Feature kPhysicalWebFeature{"PhysicalWeb",
117 base::FEATURE_ENABLED_BY_DEFAULT}; 121 base::FEATURE_ENABLED_BY_DEFAULT};
118 122
119 const base::Feature kPhysicalWebIgnoreOtherClientsFeature{ 123 const base::Feature kPhysicalWebIgnoreOtherClientsFeature{
120 "PhysicalWebIgnoreOtherClients", base::FEATURE_DISABLED_BY_DEFAULT}; 124 "PhysicalWebIgnoreOtherClients", base::FEATURE_DISABLED_BY_DEFAULT};
121 125
122 const base::Feature kSpecialLocaleFeature{"SpecialLocale", 126 const base::Feature kSpecialLocaleFeature{"SpecialLocale",
123 base::FEATURE_DISABLED_BY_DEFAULT}; 127 base::FEATURE_DISABLED_BY_DEFAULT};
124 128
125 const base::Feature kSpecialLocaleWrapper{"SpecialLocaleWrapper", 129 const base::Feature kSpecialLocaleWrapper{"SpecialLocaleWrapper",
(...skipping 20 matching lines...) Expand all
146 NOTREACHED(); 150 NOTREACHED();
147 return false; 151 return false;
148 } 152 }
149 153
150 bool RegisterChromeFeatureListJni(JNIEnv* env) { 154 bool RegisterChromeFeatureListJni(JNIEnv* env) {
151 return RegisterNativesImpl(env); 155 return RegisterNativesImpl(env);
152 } 156 }
153 157
154 } // namespace android 158 } // namespace android
155 } // namespace chrome 159 } // namespace chrome
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698