| 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 24 matching lines...) Expand all Loading... |
| 35 &features::kAutoplayMutedVideos, | 35 &features::kAutoplayMutedVideos, |
| 36 &features::kCredentialManagementAPI, | 36 &features::kCredentialManagementAPI, |
| 37 &features::kSimplifiedFullscreenUI, | 37 &features::kSimplifiedFullscreenUI, |
| 38 &features::kWebPayments, | 38 &features::kWebPayments, |
| 39 &kAndroidPayIntegrationV1, | 39 &kAndroidPayIntegrationV1, |
| 40 &kChromeHomeFeature, | 40 &kChromeHomeFeature, |
| 41 &kDownloadsUiFeature, | 41 &kDownloadsUiFeature, |
| 42 &kImportantSitesInCBD, | 42 &kImportantSitesInCBD, |
| 43 &ntp_snippets::kContentSuggestionsFeature, | 43 &ntp_snippets::kContentSuggestionsFeature, |
| 44 &ntp_snippets::kSaveToOfflineFeature, | 44 &ntp_snippets::kSaveToOfflineFeature, |
| 45 &ntp_snippets::kSectionDismissalFeature, |
| 45 &kNTPFakeOmniboxTextFeature, | 46 &kNTPFakeOmniboxTextFeature, |
| 46 &kNTPOfflinePagesFeature, | 47 &kNTPOfflinePagesFeature, |
| 47 &kPhysicalWebFeature, | 48 &kPhysicalWebFeature, |
| 48 &kPhysicalWebIgnoreOtherClientsFeature, | 49 &kPhysicalWebIgnoreOtherClientsFeature, |
| 49 &kScanCardsInWebPayments, | 50 &kScanCardsInWebPayments, |
| 50 &kSpecialLocaleFeature, | 51 &kSpecialLocaleFeature, |
| 51 &kSpecialLocaleWrapper, | 52 &kSpecialLocaleWrapper, |
| 52 &kTabReparenting, | 53 &kTabReparenting, |
| 53 &kCCTExternalLinkHandling, | 54 &kCCTExternalLinkHandling, |
| 54 &offline_pages::kOfflinePagesBackgroundLoadingFeature, | 55 &offline_pages::kOfflinePagesBackgroundLoadingFeature, |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 NOTREACHED(); | 115 NOTREACHED(); |
| 115 return false; | 116 return false; |
| 116 } | 117 } |
| 117 | 118 |
| 118 bool RegisterChromeFeatureListJni(JNIEnv* env) { | 119 bool RegisterChromeFeatureListJni(JNIEnv* env) { |
| 119 return RegisterNativesImpl(env); | 120 return RegisterNativesImpl(env); |
| 120 } | 121 } |
| 121 | 122 |
| 122 } // namespace android | 123 } // namespace android |
| 123 } // namespace chrome | 124 } // namespace chrome |
| OLD | NEW |