| 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 &kChromeHomeFeature, | 47 &kChromeHomeFeature, |
| 48 &kContextualSearchSingleActions, | 48 &kContextualSearchSingleActions, |
| 49 &kImportantSitesInCBD, | 49 &kImportantSitesInCBD, |
| 50 &kImprovedA2HS, | 50 &kImprovedA2HS, |
| 51 &kNativeAndroidHistoryManager, | 51 &kNativeAndroidHistoryManager, |
| 52 &kNoCreditCardAbort, | 52 &kNoCreditCardAbort, |
| 53 &kNTPFakeOmniboxTextFeature, | 53 &kNTPFakeOmniboxTextFeature, |
| 54 &kNTPOfflinePagesFeature, | 54 &kNTPOfflinePagesFeature, |
| 55 &kNTPSuggestionsStandaloneUIFeature, | 55 &kNTPSuggestionsStandaloneUIFeature, |
| 56 &kPhysicalWebFeature, | 56 &kPhysicalWebFeature, |
| 57 &kPhysicalWebSharing, |
| 57 &kSpecialLocaleFeature, | 58 &kSpecialLocaleFeature, |
| 58 &kSpecialLocaleWrapper, | 59 &kSpecialLocaleWrapper, |
| 59 &kTabsInCBD, | 60 &kTabsInCBD, |
| 60 &kTabReparenting, | 61 &kTabReparenting, |
| 61 &kWebPaymentsModifiers, | 62 &kWebPaymentsModifiers, |
| 62 &kWebPaymentsSingleAppUiSkip, | 63 &kWebPaymentsSingleAppUiSkip, |
| 63 &kWebVRCardboardSupport, | 64 &kWebVRCardboardSupport, |
| 64 &ntp_snippets::kIncreasedVisibility, | 65 &ntp_snippets::kIncreasedVisibility, |
| 65 &ntp_snippets::kForeignSessionsSuggestionsFeature, | 66 &ntp_snippets::kForeignSessionsSuggestionsFeature, |
| 66 &ntp_snippets::kOfflineBadgeFeature, | 67 &ntp_snippets::kOfflineBadgeFeature, |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 | 118 |
| 118 const base::Feature kNTPOfflinePagesFeature{"NTPOfflinePages", | 119 const base::Feature kNTPOfflinePagesFeature{"NTPOfflinePages", |
| 119 base::FEATURE_ENABLED_BY_DEFAULT}; | 120 base::FEATURE_ENABLED_BY_DEFAULT}; |
| 120 | 121 |
| 121 const base::Feature kNTPSuggestionsStandaloneUIFeature{ | 122 const base::Feature kNTPSuggestionsStandaloneUIFeature{ |
| 122 "NTPSuggestionsStandaloneUI", base::FEATURE_DISABLED_BY_DEFAULT}; | 123 "NTPSuggestionsStandaloneUI", base::FEATURE_DISABLED_BY_DEFAULT}; |
| 123 | 124 |
| 124 const base::Feature kPhysicalWebFeature{"PhysicalWeb", | 125 const base::Feature kPhysicalWebFeature{"PhysicalWeb", |
| 125 base::FEATURE_ENABLED_BY_DEFAULT}; | 126 base::FEATURE_ENABLED_BY_DEFAULT}; |
| 126 | 127 |
| 128 const base::Feature kPhysicalWebSharing{ |
| 129 "PhysicalWebSharing", base::FEATURE_DISABLED_BY_DEFAULT}; |
| 130 |
| 127 const base::Feature kSpecialLocaleFeature{"SpecialLocale", | 131 const base::Feature kSpecialLocaleFeature{"SpecialLocale", |
| 128 base::FEATURE_DISABLED_BY_DEFAULT}; | 132 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 129 | 133 |
| 130 const base::Feature kSpecialLocaleWrapper{"SpecialLocaleWrapper", | 134 const base::Feature kSpecialLocaleWrapper{"SpecialLocaleWrapper", |
| 131 base::FEATURE_ENABLED_BY_DEFAULT}; | 135 base::FEATURE_ENABLED_BY_DEFAULT}; |
| 132 | 136 |
| 133 const base::Feature kTabsInCBD{"TabsInCBD", base::FEATURE_DISABLED_BY_DEFAULT}; | 137 const base::Feature kTabsInCBD{"TabsInCBD", base::FEATURE_DISABLED_BY_DEFAULT}; |
| 134 | 138 |
| 135 const base::Feature kTabReparenting{"TabReparenting", | 139 const base::Feature kTabReparenting{"TabReparenting", |
| 136 base::FEATURE_ENABLED_BY_DEFAULT}; | 140 base::FEATURE_ENABLED_BY_DEFAULT}; |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 NOTREACHED(); | 183 NOTREACHED(); |
| 180 return jdefault_value; | 184 return jdefault_value; |
| 181 } | 185 } |
| 182 | 186 |
| 183 bool RegisterChromeFeatureListJni(JNIEnv* env) { | 187 bool RegisterChromeFeatureListJni(JNIEnv* env) { |
| 184 return RegisterNativesImpl(env); | 188 return RegisterNativesImpl(env); |
| 185 } | 189 } |
| 186 | 190 |
| 187 } // namespace android | 191 } // namespace android |
| 188 } // namespace chrome | 192 } // namespace chrome |
| OLD | NEW |