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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
52 &kAndroidPaymentAppsFilter, | 52 &kAndroidPaymentAppsFilter, |
53 &kCCTExternalLinkHandling, | 53 &kCCTExternalLinkHandling, |
54 &kCCTPostMessageAPI, | 54 &kCCTPostMessageAPI, |
55 &kChromeHomeFeature, | 55 &kChromeHomeFeature, |
56 &kContentSuggestionsSettings, | 56 &kContentSuggestionsSettings, |
57 &kContextualSearchSingleActions, | 57 &kContextualSearchSingleActions, |
58 &kContextualSearchUrlActions, | 58 &kContextualSearchUrlActions, |
59 &kCustomContextMenu, | 59 &kCustomContextMenu, |
60 &kCustomFeedbackUi, | 60 &kCustomFeedbackUi, |
61 &data_reduction_proxy::features::kDataReductionMainMenu, | 61 &data_reduction_proxy::features::kDataReductionMainMenu, |
| 62 &data_reduction_proxy::features::kDataReductionSiteBreakdown, |
62 &kFullscreenActivity, | 63 &kFullscreenActivity, |
63 &kImportantSitesInCBD, | 64 &kImportantSitesInCBD, |
64 &kImprovedA2HS, | 65 &kImprovedA2HS, |
65 &kNewPhotoPicker, | 66 &kNewPhotoPicker, |
66 &kNoCreditCardAbort, | 67 &kNoCreditCardAbort, |
67 &kNTPCondensedLayoutFeature, | 68 &kNTPCondensedLayoutFeature, |
68 &kNTPCondensedTileLayoutFeature, | 69 &kNTPCondensedTileLayoutFeature, |
69 &kNTPLaunchAfterInactivity, | 70 &kNTPLaunchAfterInactivity, |
70 &kNTPOfflinePagesFeature, | 71 &kNTPOfflinePagesFeature, |
71 &NTPShowGoogleGInOmniboxFeature, | 72 &NTPShowGoogleGInOmniboxFeature, |
(...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
268 return base::GetFieldTrialParamByFeatureAsBool(*feature, param_name, | 269 return base::GetFieldTrialParamByFeatureAsBool(*feature, param_name, |
269 jdefault_value); | 270 jdefault_value); |
270 } | 271 } |
271 | 272 |
272 bool RegisterChromeFeatureListJni(JNIEnv* env) { | 273 bool RegisterChromeFeatureListJni(JNIEnv* env) { |
273 return RegisterNativesImpl(env); | 274 return RegisterNativesImpl(env); |
274 } | 275 } |
275 | 276 |
276 } // namespace android | 277 } // namespace android |
277 } // namespace chrome | 278 } // namespace chrome |
OLD | NEW |