| 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 &kContextualSearchSingleActions, | 47 &kContextualSearchSingleActions, |
| 48 &kImportantSitesInCBD, | 48 &kImportantSitesInCBD, |
| 49 &kImprovedA2HS, | 49 &kImprovedA2HS, |
| 50 &kNativeAndroidHistoryManager, | 50 &kNativeAndroidHistoryManager, |
| 51 &kNoCreditCardAbort, | 51 &kNoCreditCardAbort, |
| 52 &kNTPFakeOmniboxTextFeature, | 52 &kNTPFakeOmniboxTextFeature, |
| 53 &kNTPOfflinePagesFeature, | 53 &kNTPOfflinePagesFeature, |
| 54 &kNTPSuggestionsStandaloneUIFeature, | 54 &kNTPSuggestionsStandaloneUIFeature, |
| 55 &kPhysicalWebFeature, | 55 &kPhysicalWebFeature, |
| 56 &kPhysicalWebIgnoreOtherClientsFeature, | 56 &kPhysicalWebIgnoreOtherClientsFeature, |
| 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 &ntp_snippets::kIncreasedVisibility, | 64 &ntp_snippets::kIncreasedVisibility, |
| 64 &ntp_snippets::kForeignSessionsSuggestionsFeature, | 65 &ntp_snippets::kForeignSessionsSuggestionsFeature, |
| 65 &ntp_snippets::kOfflineBadgeFeature, | 66 &ntp_snippets::kOfflineBadgeFeature, |
| 66 &ntp_snippets::kSaveToOfflineFeature, | 67 &ntp_snippets::kSaveToOfflineFeature, |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 |
| 124 const base::Feature kPhysicalWebIgnoreOtherClientsFeature{ | 125 const base::Feature kPhysicalWebIgnoreOtherClientsFeature{ |
| 125 "PhysicalWebIgnoreOtherClients", base::FEATURE_DISABLED_BY_DEFAULT}; | 126 "PhysicalWebIgnoreOtherClients", base::FEATURE_DISABLED_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 19 matching lines...) Expand all Loading... |
| 156 NOTREACHED(); | 160 NOTREACHED(); |
| 157 return false; | 161 return false; |
| 158 } | 162 } |
| 159 | 163 |
| 160 bool RegisterChromeFeatureListJni(JNIEnv* env) { | 164 bool RegisterChromeFeatureListJni(JNIEnv* env) { |
| 161 return RegisterNativesImpl(env); | 165 return RegisterNativesImpl(env); |
| 162 } | 166 } |
| 163 | 167 |
| 164 } // namespace android | 168 } // namespace android |
| 165 } // namespace chrome | 169 } // namespace chrome |
| OLD | NEW |