| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |