| 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 &kTabReparenting, | 52 &kTabReparenting, |
| 53 &kWebApks, | 53 &kWebApks, |
| 54 &ntp_snippets::kContentSuggestionsFeature, | 54 &ntp_snippets::kContentSuggestionsFeature, |
| 55 &ntp_snippets::kOfflineBadgeFeature, | 55 &ntp_snippets::kOfflineBadgeFeature, |
| 56 &ntp_snippets::kSaveToOfflineFeature, | 56 &ntp_snippets::kSaveToOfflineFeature, |
| 57 &ntp_snippets::kSectionDismissalFeature, | 57 &ntp_snippets::kSectionDismissalFeature, |
| 58 &offline_pages::kBackgroundLoaderForDownloadsFeature, | 58 &offline_pages::kBackgroundLoaderForDownloadsFeature, |
| 59 &offline_pages::kOfflinePagesBackgroundLoadingFeature, | 59 &offline_pages::kOfflinePagesBackgroundLoadingFeature, |
| 60 &offline_pages::kOfflinePagesCTFeature, // See crbug.com/620421. | 60 &offline_pages::kOfflinePagesCTFeature, // See crbug.com/620421. |
| 61 &offline_pages::kOfflinePagesSharingFeature, | 61 &offline_pages::kOfflinePagesSharingFeature, |
| 62 &offline_pages::kOfflinePagesSvelteConcurrentLoadingFeature, |
| 62 &password_manager::features::kViewPasswords, | 63 &password_manager::features::kViewPasswords, |
| 63 }; | 64 }; |
| 64 | 65 |
| 65 } // namespace | 66 } // namespace |
| 66 | 67 |
| 67 // Alphabetical: | 68 // Alphabetical: |
| 68 const base::Feature kAndroidPayIntegrationV1{"AndroidPayIntegrationV1", | 69 const base::Feature kAndroidPayIntegrationV1{"AndroidPayIntegrationV1", |
| 69 base::FEATURE_ENABLED_BY_DEFAULT}; | 70 base::FEATURE_ENABLED_BY_DEFAULT}; |
| 70 | 71 |
| 71 const base::Feature kCCTExternalLinkHandling{"CCTExternalLinkHandling", | 72 const base::Feature kCCTExternalLinkHandling{"CCTExternalLinkHandling", |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 NOTREACHED(); | 127 NOTREACHED(); |
| 127 return false; | 128 return false; |
| 128 } | 129 } |
| 129 | 130 |
| 130 bool RegisterChromeFeatureListJni(JNIEnv* env) { | 131 bool RegisterChromeFeatureListJni(JNIEnv* env) { |
| 131 return RegisterNativesImpl(env); | 132 return RegisterNativesImpl(env); |
| 132 } | 133 } |
| 133 | 134 |
| 134 } // namespace android | 135 } // namespace android |
| 135 } // namespace chrome | 136 } // namespace chrome |
| OLD | NEW |