| 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 &kCCTPostMessageAPI, | 47 &kCCTPostMessageAPI, |
| 48 &kChromeHomeFeature, | 48 &kChromeHomeFeature, |
| 49 &kContextualSearchSingleActions, | 49 &kContextualSearchSingleActions, |
| 50 &kImportantSitesInCBD, | 50 &kImportantSitesInCBD, |
| 51 &kImprovedA2HS, | 51 &kImprovedA2HS, |
| 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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 | 115 |
| 115 const base::Feature kNTPOfflinePagesFeature{"NTPOfflinePages", | 116 const base::Feature kNTPOfflinePagesFeature{"NTPOfflinePages", |
| 116 base::FEATURE_ENABLED_BY_DEFAULT}; | 117 base::FEATURE_ENABLED_BY_DEFAULT}; |
| 117 | 118 |
| 118 const base::Feature kNTPSuggestionsStandaloneUIFeature{ | 119 const base::Feature kNTPSuggestionsStandaloneUIFeature{ |
| 119 "NTPSuggestionsStandaloneUI", base::FEATURE_DISABLED_BY_DEFAULT}; | 120 "NTPSuggestionsStandaloneUI", base::FEATURE_DISABLED_BY_DEFAULT}; |
| 120 | 121 |
| 121 const base::Feature kPhysicalWebFeature{"PhysicalWeb", | 122 const base::Feature kPhysicalWebFeature{"PhysicalWeb", |
| 122 base::FEATURE_ENABLED_BY_DEFAULT}; | 123 base::FEATURE_ENABLED_BY_DEFAULT}; |
| 123 | 124 |
| 125 const base::Feature kPhysicalWebSharing{ |
| 126 "PhysicalWebSharing", base::FEATURE_DISABLED_BY_DEFAULT}; |
| 127 |
| 124 const base::Feature kSpecialLocaleFeature{"SpecialLocale", | 128 const base::Feature kSpecialLocaleFeature{"SpecialLocale", |
| 125 base::FEATURE_DISABLED_BY_DEFAULT}; | 129 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 126 | 130 |
| 127 const base::Feature kSpecialLocaleWrapper{"SpecialLocaleWrapper", | 131 const base::Feature kSpecialLocaleWrapper{"SpecialLocaleWrapper", |
| 128 base::FEATURE_ENABLED_BY_DEFAULT}; | 132 base::FEATURE_ENABLED_BY_DEFAULT}; |
| 129 | 133 |
| 130 const base::Feature kTabsInCBD{"TabsInCBD", base::FEATURE_DISABLED_BY_DEFAULT}; | 134 const base::Feature kTabsInCBD{"TabsInCBD", base::FEATURE_DISABLED_BY_DEFAULT}; |
| 131 | 135 |
| 132 const base::Feature kTabReparenting{"TabReparenting", | 136 const base::Feature kTabReparenting{"TabReparenting", |
| 133 base::FEATURE_ENABLED_BY_DEFAULT}; | 137 base::FEATURE_ENABLED_BY_DEFAULT}; |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 176 NOTREACHED(); | 180 NOTREACHED(); |
| 177 return jdefault_value; | 181 return jdefault_value; |
| 178 } | 182 } |
| 179 | 183 |
| 180 bool RegisterChromeFeatureListJni(JNIEnv* env) { | 184 bool RegisterChromeFeatureListJni(JNIEnv* env) { |
| 181 return RegisterNativesImpl(env); | 185 return RegisterNativesImpl(env); |
| 182 } | 186 } |
| 183 | 187 |
| 184 } // namespace android | 188 } // namespace android |
| 185 } // namespace chrome | 189 } // namespace chrome |
| OLD | NEW |