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

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

Issue 2937223002: Hide content suggestion summaries by default. (Closed)
Patch Set: Created 3 years, 6 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
142 const base::Feature kChromeHomeSwipeLogic{"ChromeHomeSwipeLogic", 142 const base::Feature kChromeHomeSwipeLogic{"ChromeHomeSwipeLogic",
143 base::FEATURE_DISABLED_BY_DEFAULT}; 143 base::FEATURE_DISABLED_BY_DEFAULT};
144 144
145 const base::Feature kContentSuggestionsCategories{ 145 const base::Feature kContentSuggestionsCategories{
146 "ContentSuggestionsCategories", base::FEATURE_DISABLED_BY_DEFAULT}; 146 "ContentSuggestionsCategories", base::FEATURE_DISABLED_BY_DEFAULT};
147 147
148 const base::Feature kContentSuggestionsSettings{ 148 const base::Feature kContentSuggestionsSettings{
149 "ContentSuggestionsSettings", base::FEATURE_DISABLED_BY_DEFAULT}; 149 "ContentSuggestionsSettings", base::FEATURE_DISABLED_BY_DEFAULT};
150 150
151 const base::Feature kContentSuggestionsShowSummary{ 151 const base::Feature kContentSuggestionsShowSummary{
152 "ContentSuggestionsShowSummary", base::FEATURE_ENABLED_BY_DEFAULT}; 152 "ContentSuggestionsShowSummary", base::FEATURE_DISABLED_BY_DEFAULT};
153 153
154 const base::Feature kContextualSearchSingleActions{ 154 const base::Feature kContextualSearchSingleActions{
155 "ContextualSearchSingleActions", base::FEATURE_ENABLED_BY_DEFAULT}; 155 "ContextualSearchSingleActions", base::FEATURE_ENABLED_BY_DEFAULT};
156 156
157 const base::Feature kContextualSearchUrlActions{ 157 const base::Feature kContextualSearchUrlActions{
158 "ContextualSearchUrlActions", base::FEATURE_ENABLED_BY_DEFAULT}; 158 "ContextualSearchUrlActions", base::FEATURE_ENABLED_BY_DEFAULT};
159 159
160 const base::Feature kContextualSuggestionsCarousel{ 160 const base::Feature kContextualSuggestionsCarousel{
161 "ContextualSuggestionsCarousel", base::FEATURE_DISABLED_BY_DEFAULT}; 161 "ContextualSuggestionsCarousel", base::FEATURE_DISABLED_BY_DEFAULT};
162 162
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after
318 return base::GetFieldTrialParamByFeatureAsBool(*feature, param_name, 318 return base::GetFieldTrialParamByFeatureAsBool(*feature, param_name,
319 jdefault_value); 319 jdefault_value);
320 } 320 }
321 321
322 bool RegisterChromeFeatureListJni(JNIEnv* env) { 322 bool RegisterChromeFeatureListJni(JNIEnv* env) {
323 return RegisterNativesImpl(env); 323 return RegisterNativesImpl(env);
324 } 324 }
325 325
326 } // namespace android 326 } // namespace android
327 } // namespace chrome 327 } // namespace chrome
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698