| 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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 &kImprovedA2HS, | 64 &kImprovedA2HS, |
| 65 &kNewPhotoPicker, | 65 &kNewPhotoPicker, |
| 66 &kNoCreditCardAbort, | 66 &kNoCreditCardAbort, |
| 67 &kNTPCondensedLayoutFeature, | 67 &kNTPCondensedLayoutFeature, |
| 68 &kNTPCondensedTileLayoutFeature, | 68 &kNTPCondensedTileLayoutFeature, |
| 69 &kNTPLaunchAfterInactivity, | 69 &kNTPLaunchAfterInactivity, |
| 70 &kNTPOfflinePagesFeature, | 70 &kNTPOfflinePagesFeature, |
| 71 &NTPShowGoogleGInOmniboxFeature, | 71 &NTPShowGoogleGInOmniboxFeature, |
| 72 &kPhysicalWebFeature, | 72 &kPhysicalWebFeature, |
| 73 &kPhysicalWebSharing, | 73 &kPhysicalWebSharing, |
| 74 &kSearchEnginePromoExistingDevice, |
| 75 &kSearchEnginePromoNewDevice, |
| 74 &kSpecialLocaleFeature, | 76 &kSpecialLocaleFeature, |
| 75 &kSpecialLocaleWrapper, | 77 &kSpecialLocaleWrapper, |
| 76 &kTabsInCBD, | 78 &kTabsInCBD, |
| 77 &kTabReparenting, | 79 &kTabReparenting, |
| 78 &kVideoPersistence, | 80 &kVideoPersistence, |
| 79 &kWebPaymentsModifiers, | 81 &kWebPaymentsModifiers, |
| 80 &kWebPaymentsSingleAppUiSkip, | 82 &kWebPaymentsSingleAppUiSkip, |
| 81 &kWebVRCardboardSupport, | 83 &kWebVRCardboardSupport, |
| 82 &ntp_snippets::kIncreasedVisibility, | 84 &ntp_snippets::kIncreasedVisibility, |
| 83 &ntp_snippets::kForeignSessionsSuggestionsFeature, | 85 &ntp_snippets::kForeignSessionsSuggestionsFeature, |
| (...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 278 return base::GetFieldTrialParamByFeatureAsBool(*feature, param_name, | 280 return base::GetFieldTrialParamByFeatureAsBool(*feature, param_name, |
| 279 jdefault_value); | 281 jdefault_value); |
| 280 } | 282 } |
| 281 | 283 |
| 282 bool RegisterChromeFeatureListJni(JNIEnv* env) { | 284 bool RegisterChromeFeatureListJni(JNIEnv* env) { |
| 283 return RegisterNativesImpl(env); | 285 return RegisterNativesImpl(env); |
| 284 } | 286 } |
| 285 | 287 |
| 286 } // namespace android | 288 } // namespace android |
| 287 } // namespace chrome | 289 } // namespace chrome |
| OLD | NEW |