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