| 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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 &kNTPOfflinePagesFeature, | 74 &kNTPOfflinePagesFeature, |
| 75 &NTPShowGoogleGInOmniboxFeature, | 75 &NTPShowGoogleGInOmniboxFeature, |
| 76 &kPhysicalWebFeature, | 76 &kPhysicalWebFeature, |
| 77 &kPhysicalWebSharing, | 77 &kPhysicalWebSharing, |
| 78 &kSearchEnginePromoExistingDevice, | 78 &kSearchEnginePromoExistingDevice, |
| 79 &kSearchEnginePromoNewDevice, | 79 &kSearchEnginePromoNewDevice, |
| 80 &kSpecialLocaleFeature, | 80 &kSpecialLocaleFeature, |
| 81 &kSpecialLocaleWrapper, | 81 &kSpecialLocaleWrapper, |
| 82 &kTabReparenting, | 82 &kTabReparenting, |
| 83 &kVideoPersistence, | 83 &kVideoPersistence, |
| 84 &kVrCustomTabBrowsing, |
| 84 &kWebPaymentsModifiers, | 85 &kWebPaymentsModifiers, |
| 85 &kWebPaymentsSingleAppUiSkip, | 86 &kWebPaymentsSingleAppUiSkip, |
| 86 &kWebVRCardboardSupport, | 87 &kWebVRCardboardSupport, |
| 87 &kXGEOVisibleNetworks, | 88 &kXGEOVisibleNetworks, |
| 88 &ntp_snippets::kIncreasedVisibility, | 89 &ntp_snippets::kIncreasedVisibility, |
| 89 &ntp_snippets::kForeignSessionsSuggestionsFeature, | 90 &ntp_snippets::kForeignSessionsSuggestionsFeature, |
| 90 &ntp_snippets::kNotificationsFeature, | 91 &ntp_snippets::kNotificationsFeature, |
| 91 &ntp_snippets::kPublisherFaviconsFromNewServerFeature, | 92 &ntp_snippets::kPublisherFaviconsFromNewServerFeature, |
| 92 &offline_pages::kBackgroundLoaderForDownloadsFeature, | 93 &offline_pages::kBackgroundLoaderForDownloadsFeature, |
| 93 &offline_pages::kOfflinePagesCTFeature, // See crbug.com/620421. | 94 &offline_pages::kOfflinePagesCTFeature, // See crbug.com/620421. |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 218 | 219 |
| 219 const base::Feature kUseNewDoodleApi{"UseNewDoodleApi", | 220 const base::Feature kUseNewDoodleApi{"UseNewDoodleApi", |
| 220 base::FEATURE_DISABLED_BY_DEFAULT}; | 221 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 221 | 222 |
| 222 const base::Feature kUserMediaScreenCapturing{ | 223 const base::Feature kUserMediaScreenCapturing{ |
| 223 "UserMediaScreenCapturing", base::FEATURE_DISABLED_BY_DEFAULT}; | 224 "UserMediaScreenCapturing", base::FEATURE_DISABLED_BY_DEFAULT}; |
| 224 | 225 |
| 225 const base::Feature kVideoPersistence{"VideoPersistence", | 226 const base::Feature kVideoPersistence{"VideoPersistence", |
| 226 base::FEATURE_ENABLED_BY_DEFAULT}; | 227 base::FEATURE_ENABLED_BY_DEFAULT}; |
| 227 | 228 |
| 229 const base::Feature kVrCustomTabBrowsing{"VrCustomTabBrowsing", |
| 230 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 231 |
| 228 const base::Feature kWebPaymentsModifiers{"WebPaymentsModifiers", | 232 const base::Feature kWebPaymentsModifiers{"WebPaymentsModifiers", |
| 229 base::FEATURE_DISABLED_BY_DEFAULT}; | 233 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 230 | 234 |
| 231 const base::Feature kWebPaymentsSingleAppUiSkip{ | 235 const base::Feature kWebPaymentsSingleAppUiSkip{ |
| 232 "WebPaymentsSingleAppUiSkip", base::FEATURE_ENABLED_BY_DEFAULT}; | 236 "WebPaymentsSingleAppUiSkip", base::FEATURE_ENABLED_BY_DEFAULT}; |
| 233 | 237 |
| 234 const base::Feature kWebVRCardboardSupport{ | 238 const base::Feature kWebVRCardboardSupport{ |
| 235 "WebVRCardboardSupport", base::FEATURE_ENABLED_BY_DEFAULT}; | 239 "WebVRCardboardSupport", base::FEATURE_ENABLED_BY_DEFAULT}; |
| 236 | 240 |
| 237 const base::Feature kXGEOVisibleNetworks{"XGEOVisibleNetworks", | 241 const base::Feature kXGEOVisibleNetworks{"XGEOVisibleNetworks", |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 300 return base::GetFieldTrialParamByFeatureAsBool(*feature, param_name, | 304 return base::GetFieldTrialParamByFeatureAsBool(*feature, param_name, |
| 301 jdefault_value); | 305 jdefault_value); |
| 302 } | 306 } |
| 303 | 307 |
| 304 bool RegisterChromeFeatureListJni(JNIEnv* env) { | 308 bool RegisterChromeFeatureListJni(JNIEnv* env) { |
| 305 return RegisterNativesImpl(env); | 309 return RegisterNativesImpl(env); |
| 306 } | 310 } |
| 307 | 311 |
| 308 } // namespace android | 312 } // namespace android |
| 309 } // namespace chrome | 313 } // namespace chrome |
| OLD | NEW |