| 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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 &kSpecialLocaleFeature, | 57 &kSpecialLocaleFeature, |
| 58 &kSpecialLocaleWrapper, | 58 &kSpecialLocaleWrapper, |
| 59 &kTabsInCBD, | 59 &kTabsInCBD, |
| 60 &kTabReparenting, | 60 &kTabReparenting, |
| 61 &kWebPaymentsModifiers, | 61 &kWebPaymentsModifiers, |
| 62 &kWebPaymentsSingleAppUiSkip, | 62 &kWebPaymentsSingleAppUiSkip, |
| 63 &ntp_snippets::kIncreasedVisibility, | 63 &ntp_snippets::kIncreasedVisibility, |
| 64 &ntp_snippets::kForeignSessionsSuggestionsFeature, | 64 &ntp_snippets::kForeignSessionsSuggestionsFeature, |
| 65 &ntp_snippets::kOfflineBadgeFeature, | 65 &ntp_snippets::kOfflineBadgeFeature, |
| 66 &ntp_snippets::kSaveToOfflineFeature, | 66 &ntp_snippets::kSaveToOfflineFeature, |
| 67 &ntp_snippets::kSectionDismissalFeature, | |
| 68 &offline_pages::kBackgroundLoaderForDownloadsFeature, | 67 &offline_pages::kBackgroundLoaderForDownloadsFeature, |
| 69 &offline_pages::kOfflinePagesCTFeature, // See crbug.com/620421. | 68 &offline_pages::kOfflinePagesCTFeature, // See crbug.com/620421. |
| 70 &offline_pages::kOfflinePagesSharingFeature, | 69 &offline_pages::kOfflinePagesSharingFeature, |
| 71 &password_manager::features::kViewPasswords, | 70 &password_manager::features::kViewPasswords, |
| 72 }; | 71 }; |
| 73 | 72 |
| 74 } // namespace | 73 } // namespace |
| 75 | 74 |
| 76 // Alphabetical: | 75 // Alphabetical: |
| 77 const base::Feature kAndroidPayIntegrationV1{"AndroidPayIntegrationV1", | 76 const base::Feature kAndroidPayIntegrationV1{"AndroidPayIntegrationV1", |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 156 NOTREACHED(); | 155 NOTREACHED(); |
| 157 return false; | 156 return false; |
| 158 } | 157 } |
| 159 | 158 |
| 160 bool RegisterChromeFeatureListJni(JNIEnv* env) { | 159 bool RegisterChromeFeatureListJni(JNIEnv* env) { |
| 161 return RegisterNativesImpl(env); | 160 return RegisterNativesImpl(env); |
| 162 } | 161 } |
| 163 | 162 |
| 164 } // namespace android | 163 } // namespace android |
| 165 } // namespace chrome | 164 } // namespace chrome |
| OLD | NEW |