| 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 &kCCTPostMessageAPI, | 44 &kCCTPostMessageAPI, |
| 45 &kChromeHomeFeature, | 45 &kChromeHomeFeature, |
| 46 &kContextualSearchSingleActions, | 46 &kContextualSearchSingleActions, |
| 47 &kDownloadsUiFeature, | 47 &kDownloadsUiFeature, |
| 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 &kPhysicalWebFeature, | 55 &kPhysicalWebFeature, |
| 55 &kPhysicalWebIgnoreOtherClientsFeature, | 56 &kPhysicalWebIgnoreOtherClientsFeature, |
| 56 &kSpecialLocaleFeature, | 57 &kSpecialLocaleFeature, |
| 57 &kSpecialLocaleWrapper, | 58 &kSpecialLocaleWrapper, |
| 58 &kTabReparenting, | 59 &kTabReparenting, |
| 59 &kWebPaymentsModifiers, | 60 &kWebPaymentsModifiers, |
| 60 &ntp_snippets::kContentSuggestionsFeature, | 61 &ntp_snippets::kContentSuggestionsFeature, |
| 61 &ntp_snippets::kIncreasedVisibility, | 62 &ntp_snippets::kIncreasedVisibility, |
| 62 &ntp_snippets::kForeignSessionsSuggestionsFeature, | 63 &ntp_snippets::kForeignSessionsSuggestionsFeature, |
| 63 &ntp_snippets::kOfflineBadgeFeature, | 64 &ntp_snippets::kOfflineBadgeFeature, |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 | 107 |
| 107 const base::Feature kNoCreditCardAbort{"NoCreditCardAbort", | 108 const base::Feature kNoCreditCardAbort{"NoCreditCardAbort", |
| 108 base::FEATURE_DISABLED_BY_DEFAULT}; | 109 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 109 | 110 |
| 110 const base::Feature kNTPFakeOmniboxTextFeature{ | 111 const base::Feature kNTPFakeOmniboxTextFeature{ |
| 111 "NTPFakeOmniboxText", base::FEATURE_DISABLED_BY_DEFAULT}; | 112 "NTPFakeOmniboxText", base::FEATURE_DISABLED_BY_DEFAULT}; |
| 112 | 113 |
| 113 const base::Feature kNTPOfflinePagesFeature{"NTPOfflinePages", | 114 const base::Feature kNTPOfflinePagesFeature{"NTPOfflinePages", |
| 114 base::FEATURE_ENABLED_BY_DEFAULT}; | 115 base::FEATURE_ENABLED_BY_DEFAULT}; |
| 115 | 116 |
| 117 const base::Feature kNTPSuggestionsStandaloneUIFeature{ |
| 118 "NTPSuggestionsStandaloneUI", base::FEATURE_DISABLED_BY_DEFAULT}; |
| 119 |
| 116 const base::Feature kPhysicalWebFeature{"PhysicalWeb", | 120 const base::Feature kPhysicalWebFeature{"PhysicalWeb", |
| 117 base::FEATURE_ENABLED_BY_DEFAULT}; | 121 base::FEATURE_ENABLED_BY_DEFAULT}; |
| 118 | 122 |
| 119 const base::Feature kPhysicalWebIgnoreOtherClientsFeature{ | 123 const base::Feature kPhysicalWebIgnoreOtherClientsFeature{ |
| 120 "PhysicalWebIgnoreOtherClients", base::FEATURE_DISABLED_BY_DEFAULT}; | 124 "PhysicalWebIgnoreOtherClients", base::FEATURE_DISABLED_BY_DEFAULT}; |
| 121 | 125 |
| 122 const base::Feature kSpecialLocaleFeature{"SpecialLocale", | 126 const base::Feature kSpecialLocaleFeature{"SpecialLocale", |
| 123 base::FEATURE_DISABLED_BY_DEFAULT}; | 127 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 124 | 128 |
| 125 const base::Feature kSpecialLocaleWrapper{"SpecialLocaleWrapper", | 129 const base::Feature kSpecialLocaleWrapper{"SpecialLocaleWrapper", |
| (...skipping 20 matching lines...) Expand all Loading... |
| 146 NOTREACHED(); | 150 NOTREACHED(); |
| 147 return false; | 151 return false; |
| 148 } | 152 } |
| 149 | 153 |
| 150 bool RegisterChromeFeatureListJni(JNIEnv* env) { | 154 bool RegisterChromeFeatureListJni(JNIEnv* env) { |
| 151 return RegisterNativesImpl(env); | 155 return RegisterNativesImpl(env); |
| 152 } | 156 } |
| 153 | 157 |
| 154 } // namespace android | 158 } // namespace android |
| 155 } // namespace chrome | 159 } // namespace chrome |
| OLD | NEW |