| 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 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 | 179 |
| 180 const base::Feature kFullscreenActivity{"FullscreenActivity", | 180 const base::Feature kFullscreenActivity{"FullscreenActivity", |
| 181 base::FEATURE_DISABLED_BY_DEFAULT}; | 181 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 182 | 182 |
| 183 // Makes "Add to Home screen" in the app menu generate an APK for the shortcut | 183 // Makes "Add to Home screen" in the app menu generate an APK for the shortcut |
| 184 // URL which opens Chrome in fullscreen. | 184 // URL which opens Chrome in fullscreen. |
| 185 const base::Feature kImprovedA2HS{"ImprovedA2HS", | 185 const base::Feature kImprovedA2HS{"ImprovedA2HS", |
| 186 base::FEATURE_DISABLED_BY_DEFAULT}; | 186 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 187 | 187 |
| 188 const base::Feature kSearchEnginePromoExistingDevice{ | 188 const base::Feature kSearchEnginePromoExistingDevice{ |
| 189 "SearchEnginePromo.ExistingDevice", base::FEATURE_DISABLED_BY_DEFAULT}; | 189 "SearchEnginePromo.ExistingDevice", base::FEATURE_ENABLED_BY_DEFAULT}; |
| 190 | 190 |
| 191 const base::Feature kSearchEnginePromoNewDevice{ | 191 const base::Feature kSearchEnginePromoNewDevice{ |
| 192 "SearchEnginePromo.NewDevice", base::FEATURE_DISABLED_BY_DEFAULT}; | 192 "SearchEnginePromo.NewDevice", base::FEATURE_ENABLED_BY_DEFAULT}; |
| 193 | 193 |
| 194 const base::Feature kNewPhotoPicker{"NewPhotoPicker", | 194 const base::Feature kNewPhotoPicker{"NewPhotoPicker", |
| 195 base::FEATURE_DISABLED_BY_DEFAULT}; | 195 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 196 | 196 |
| 197 const base::Feature kNoCreditCardAbort{"NoCreditCardAbort", | 197 const base::Feature kNoCreditCardAbort{"NoCreditCardAbort", |
| 198 base::FEATURE_DISABLED_BY_DEFAULT}; | 198 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 199 | 199 |
| 200 const base::Feature kNTPCondensedLayoutFeature{ | 200 const base::Feature kNTPCondensedLayoutFeature{ |
| 201 "NTPCondensedLayout", base::FEATURE_DISABLED_BY_DEFAULT}; | 201 "NTPCondensedLayout", base::FEATURE_DISABLED_BY_DEFAULT}; |
| 202 | 202 |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 320 return base::GetFieldTrialParamByFeatureAsBool(*feature, param_name, | 320 return base::GetFieldTrialParamByFeatureAsBool(*feature, param_name, |
| 321 jdefault_value); | 321 jdefault_value); |
| 322 } | 322 } |
| 323 | 323 |
| 324 bool RegisterChromeFeatureListJni(JNIEnv* env) { | 324 bool RegisterChromeFeatureListJni(JNIEnv* env) { |
| 325 return RegisterNativesImpl(env); | 325 return RegisterNativesImpl(env); |
| 326 } | 326 } |
| 327 | 327 |
| 328 } // namespace android | 328 } // namespace android |
| 329 } // namespace chrome | 329 } // namespace chrome |
| OLD | NEW |