| 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 28 matching lines...) Expand all Loading... |
| 39 &kAndroidPayIntegrationV1, | 39 &kAndroidPayIntegrationV1, |
| 40 &kCCTExternalLinkHandling, | 40 &kCCTExternalLinkHandling, |
| 41 &kChromeHomeFeature, | 41 &kChromeHomeFeature, |
| 42 &kDownloadsUiFeature, | 42 &kDownloadsUiFeature, |
| 43 &kImportantSitesInCBD, | 43 &kImportantSitesInCBD, |
| 44 &kNoCreditCardAbort, | 44 &kNoCreditCardAbort, |
| 45 &kNTPFakeOmniboxTextFeature, | 45 &kNTPFakeOmniboxTextFeature, |
| 46 &kNTPOfflinePagesFeature, | 46 &kNTPOfflinePagesFeature, |
| 47 &kPhysicalWebFeature, | 47 &kPhysicalWebFeature, |
| 48 &kPhysicalWebIgnoreOtherClientsFeature, | 48 &kPhysicalWebIgnoreOtherClientsFeature, |
| 49 &kScanCardsInWebPayments, | |
| 50 &kSpecialLocaleFeature, | 49 &kSpecialLocaleFeature, |
| 51 &kSpecialLocaleWrapper, | 50 &kSpecialLocaleWrapper, |
| 52 &kTabReparenting, | 51 &kTabReparenting, |
| 53 &kWebApks, | 52 &kWebApks, |
| 54 &ntp_snippets::kContentSuggestionsFeature, | 53 &ntp_snippets::kContentSuggestionsFeature, |
| 55 &ntp_snippets::kSaveToOfflineFeature, | 54 &ntp_snippets::kSaveToOfflineFeature, |
| 56 &ntp_snippets::kSectionDismissalFeature, | 55 &ntp_snippets::kSectionDismissalFeature, |
| 57 &offline_pages::kBackgroundLoaderForDownloadsFeature, | 56 &offline_pages::kBackgroundLoaderForDownloadsFeature, |
| 58 &offline_pages::kOfflinePagesBackgroundLoadingFeature, | 57 &offline_pages::kOfflinePagesBackgroundLoadingFeature, |
| 59 &offline_pages::kOfflinePagesCTFeature, // See crbug.com/620421. | 58 &offline_pages::kOfflinePagesCTFeature, // See crbug.com/620421. |
| (...skipping 26 matching lines...) Expand all Loading... |
| 86 | 85 |
| 87 const base::Feature kNTPFakeOmniboxTextFeature{ | 86 const base::Feature kNTPFakeOmniboxTextFeature{ |
| 88 "NTPFakeOmniboxText", base::FEATURE_DISABLED_BY_DEFAULT}; | 87 "NTPFakeOmniboxText", base::FEATURE_DISABLED_BY_DEFAULT}; |
| 89 | 88 |
| 90 const base::Feature kPhysicalWebFeature{"PhysicalWeb", | 89 const base::Feature kPhysicalWebFeature{"PhysicalWeb", |
| 91 base::FEATURE_ENABLED_BY_DEFAULT}; | 90 base::FEATURE_ENABLED_BY_DEFAULT}; |
| 92 | 91 |
| 93 const base::Feature kPhysicalWebIgnoreOtherClientsFeature{ | 92 const base::Feature kPhysicalWebIgnoreOtherClientsFeature{ |
| 94 "PhysicalWebIgnoreOtherClients", base::FEATURE_DISABLED_BY_DEFAULT}; | 93 "PhysicalWebIgnoreOtherClients", base::FEATURE_DISABLED_BY_DEFAULT}; |
| 95 | 94 |
| 96 const base::Feature kScanCardsInWebPayments{"ScanCardsInWebPayments", | |
| 97 base::FEATURE_DISABLED_BY_DEFAULT}; | |
| 98 | |
| 99 const base::Feature kSpecialLocaleFeature{"SpecialLocale", | 95 const base::Feature kSpecialLocaleFeature{"SpecialLocale", |
| 100 base::FEATURE_DISABLED_BY_DEFAULT}; | 96 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 101 | 97 |
| 102 const base::Feature kSpecialLocaleWrapper{"SpecialLocaleWrapper", | 98 const base::Feature kSpecialLocaleWrapper{"SpecialLocaleWrapper", |
| 103 base::FEATURE_ENABLED_BY_DEFAULT}; | 99 base::FEATURE_ENABLED_BY_DEFAULT}; |
| 104 | 100 |
| 105 const base::Feature kTabReparenting{"TabReparenting", | 101 const base::Feature kTabReparenting{"TabReparenting", |
| 106 base::FEATURE_ENABLED_BY_DEFAULT}; | 102 base::FEATURE_ENABLED_BY_DEFAULT}; |
| 107 | 103 |
| 108 const base::Feature kUserMediaScreenCapturing{ | 104 const base::Feature kUserMediaScreenCapturing{ |
| (...skipping 15 matching lines...) Expand all Loading... |
| 124 NOTREACHED(); | 120 NOTREACHED(); |
| 125 return false; | 121 return false; |
| 126 } | 122 } |
| 127 | 123 |
| 128 bool RegisterChromeFeatureListJni(JNIEnv* env) { | 124 bool RegisterChromeFeatureListJni(JNIEnv* env) { |
| 129 return RegisterNativesImpl(env); | 125 return RegisterNativesImpl(env); |
| 130 } | 126 } |
| 131 | 127 |
| 132 } // namespace android | 128 } // namespace android |
| 133 } // namespace chrome | 129 } // namespace chrome |
| OLD | NEW |