| 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 30 matching lines...) Expand all Loading... |
| 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 &kNTPFakeOmniboxTextFeature, | 45 &kNTPFakeOmniboxTextFeature, |
| 46 &kNTPMaterialDesign, | 46 &kNTPMaterialDesign, |
| 47 &kNTPOfflinePagesFeature, | 47 &kNTPOfflinePagesFeature, |
| 48 &kPhysicalWebFeature, | 48 &kPhysicalWebFeature, |
| 49 &kPhysicalWebIgnoreOtherClientsFeature, | 49 &kPhysicalWebIgnoreOtherClientsFeature, |
| 50 &kReadItLaterInMenu, | 50 &kReadItLaterInMenu, |
| 51 &kScanCardsInWebPayments, |
| 51 &kSpecialLocaleFeature, | 52 &kSpecialLocaleFeature, |
| 52 &kSpecialLocaleWrapper, | 53 &kSpecialLocaleWrapper, |
| 53 &kSystemDownloadManager, | 54 &kSystemDownloadManager, |
| 54 &kTabReparenting, | 55 &kTabReparenting, |
| 55 &offline_pages::kOfflinePagesBackgroundLoadingFeature, | 56 &offline_pages::kOfflinePagesBackgroundLoadingFeature, |
| 56 &offline_pages::kBackgroundLoaderForDownloadsFeature, | 57 &offline_pages::kBackgroundLoaderForDownloadsFeature, |
| 57 &offline_pages::kOfflinePagesCTFeature, // See crbug.com/620421. | 58 &offline_pages::kOfflinePagesCTFeature, // See crbug.com/620421. |
| 58 &offline_pages::kOfflinePagesSharingFeature, | 59 &offline_pages::kOfflinePagesSharingFeature, |
| 59 &password_manager::features::kViewPasswords, | 60 &password_manager::features::kViewPasswords, |
| 60 }; | 61 }; |
| (...skipping 23 matching lines...) Expand all Loading... |
| 84 | 85 |
| 85 const base::Feature kPhysicalWebFeature{"PhysicalWeb", | 86 const base::Feature kPhysicalWebFeature{"PhysicalWeb", |
| 86 base::FEATURE_ENABLED_BY_DEFAULT}; | 87 base::FEATURE_ENABLED_BY_DEFAULT}; |
| 87 | 88 |
| 88 const base::Feature kPhysicalWebIgnoreOtherClientsFeature{ | 89 const base::Feature kPhysicalWebIgnoreOtherClientsFeature{ |
| 89 "PhysicalWebIgnoreOtherClients", base::FEATURE_DISABLED_BY_DEFAULT}; | 90 "PhysicalWebIgnoreOtherClients", base::FEATURE_DISABLED_BY_DEFAULT}; |
| 90 | 91 |
| 91 const base::Feature kReadItLaterInMenu{"ReadItLaterInMenu", | 92 const base::Feature kReadItLaterInMenu{"ReadItLaterInMenu", |
| 92 base::FEATURE_DISABLED_BY_DEFAULT}; | 93 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 93 | 94 |
| 95 const base::Feature kScanCardsInWebPayments{"ScanCardsInWebPayments", |
| 96 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 97 |
| 94 const base::Feature kSpecialLocaleFeature{"SpecialLocale", | 98 const base::Feature kSpecialLocaleFeature{"SpecialLocale", |
| 95 base::FEATURE_DISABLED_BY_DEFAULT}; | 99 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 96 | 100 |
| 97 const base::Feature kSpecialLocaleWrapper{"SpecialLocaleWrapper", | 101 const base::Feature kSpecialLocaleWrapper{"SpecialLocaleWrapper", |
| 98 base::FEATURE_ENABLED_BY_DEFAULT}; | 102 base::FEATURE_ENABLED_BY_DEFAULT}; |
| 99 | 103 |
| 100 const base::Feature kSystemDownloadManager{"SystemDownloadManager", | 104 const base::Feature kSystemDownloadManager{"SystemDownloadManager", |
| 101 base::FEATURE_ENABLED_BY_DEFAULT}; | 105 base::FEATURE_ENABLED_BY_DEFAULT}; |
| 102 | 106 |
| 103 const base::Feature kTabReparenting { | 107 const base::Feature kTabReparenting { |
| (...skipping 12 matching lines...) Expand all Loading... |
| 116 NOTREACHED(); | 120 NOTREACHED(); |
| 117 return false; | 121 return false; |
| 118 } | 122 } |
| 119 | 123 |
| 120 bool RegisterChromeFeatureListJni(JNIEnv* env) { | 124 bool RegisterChromeFeatureListJni(JNIEnv* env) { |
| 121 return RegisterNativesImpl(env); | 125 return RegisterNativesImpl(env); |
| 122 } | 126 } |
| 123 | 127 |
| 124 } // namespace android | 128 } // namespace android |
| 125 } // namespace chrome | 129 } // namespace chrome |
| OLD | NEW |