| 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 &kNTPOfflinePagesFeature, | 54 &kNTPOfflinePagesFeature, |
| 55 &kNTPSuggestionsStandaloneUIFeature, | 55 &kNTPSuggestionsStandaloneUIFeature, |
| 56 &kPhysicalWebFeature, | 56 &kPhysicalWebFeature, |
| 57 &kPhysicalWebIgnoreOtherClientsFeature, | 57 &kPhysicalWebIgnoreOtherClientsFeature, |
| 58 &kSpecialLocaleFeature, | 58 &kSpecialLocaleFeature, |
| 59 &kSpecialLocaleWrapper, | 59 &kSpecialLocaleWrapper, |
| 60 &kTabsInCBD, | 60 &kTabsInCBD, |
| 61 &kTabReparenting, | 61 &kTabReparenting, |
| 62 &kWebPaymentsModifiers, | 62 &kWebPaymentsModifiers, |
| 63 &kWebPaymentsSingleAppUiSkip, | 63 &kWebPaymentsSingleAppUiSkip, |
| 64 &ntp_snippets::kContentSuggestionsFeature, | |
| 65 &ntp_snippets::kIncreasedVisibility, | 64 &ntp_snippets::kIncreasedVisibility, |
| 66 &ntp_snippets::kForeignSessionsSuggestionsFeature, | 65 &ntp_snippets::kForeignSessionsSuggestionsFeature, |
| 67 &ntp_snippets::kOfflineBadgeFeature, | 66 &ntp_snippets::kOfflineBadgeFeature, |
| 68 &ntp_snippets::kSaveToOfflineFeature, | 67 &ntp_snippets::kSaveToOfflineFeature, |
| 69 &ntp_snippets::kSectionDismissalFeature, | 68 &ntp_snippets::kSectionDismissalFeature, |
| 70 &offline_pages::kBackgroundLoaderForDownloadsFeature, | 69 &offline_pages::kBackgroundLoaderForDownloadsFeature, |
| 71 &offline_pages::kOfflinePagesCTFeature, // See crbug.com/620421. | 70 &offline_pages::kOfflinePagesCTFeature, // See crbug.com/620421. |
| 72 &offline_pages::kOfflinePagesSharingFeature, | 71 &offline_pages::kOfflinePagesSharingFeature, |
| 73 &password_manager::features::kViewPasswords, | 72 &password_manager::features::kViewPasswords, |
| 74 }; | 73 }; |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 NOTREACHED(); | 160 NOTREACHED(); |
| 162 return false; | 161 return false; |
| 163 } | 162 } |
| 164 | 163 |
| 165 bool RegisterChromeFeatureListJni(JNIEnv* env) { | 164 bool RegisterChromeFeatureListJni(JNIEnv* env) { |
| 166 return RegisterNativesImpl(env); | 165 return RegisterNativesImpl(env); |
| 167 } | 166 } |
| 168 | 167 |
| 169 } // namespace android | 168 } // namespace android |
| 170 } // namespace chrome | 169 } // namespace chrome |
| OLD | NEW |