| 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 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 const base::Feature kCustomContextMenu{"CustomContextMenu", | 136 const base::Feature kCustomContextMenu{"CustomContextMenu", |
| 137 base::FEATURE_DISABLED_BY_DEFAULT}; | 137 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 138 | 138 |
| 139 const base::Feature kCustomFeedbackUi{"CustomFeedbackUi", | 139 const base::Feature kCustomFeedbackUi{"CustomFeedbackUi", |
| 140 base::FEATURE_DISABLED_BY_DEFAULT}; | 140 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 141 | 141 |
| 142 const base::Feature kDownloadAutoResumptionThrottling{ | 142 const base::Feature kDownloadAutoResumptionThrottling{ |
| 143 "DownloadAutoResumptionThrottling", base::FEATURE_ENABLED_BY_DEFAULT}; | 143 "DownloadAutoResumptionThrottling", base::FEATURE_ENABLED_BY_DEFAULT}; |
| 144 | 144 |
| 145 const base::Feature kFullscreenActivity{"FullscreenActivity", | 145 const base::Feature kFullscreenActivity{"FullscreenActivity", |
| 146 base::FEATURE_ENABLED_BY_DEFAULT}; | 146 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 147 | 147 |
| 148 const base::Feature kImportantSitesInCBD{"ImportantSitesInCBD", | 148 const base::Feature kImportantSitesInCBD{"ImportantSitesInCBD", |
| 149 base::FEATURE_DISABLED_BY_DEFAULT}; | 149 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 150 | 150 |
| 151 // Makes "Add to Home screen" in the app menu generate an APK for the shortcut | 151 // Makes "Add to Home screen" in the app menu generate an APK for the shortcut |
| 152 // URL which opens Chrome in fullscreen. | 152 // URL which opens Chrome in fullscreen. |
| 153 const base::Feature kImprovedA2HS{"ImprovedA2HS", | 153 const base::Feature kImprovedA2HS{"ImprovedA2HS", |
| 154 base::FEATURE_DISABLED_BY_DEFAULT}; | 154 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 155 | 155 |
| 156 const base::Feature kSearchEnginePromoExistingDevice{ | 156 const base::Feature kSearchEnginePromoExistingDevice{ |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 278 return base::GetFieldTrialParamByFeatureAsBool(*feature, param_name, | 278 return base::GetFieldTrialParamByFeatureAsBool(*feature, param_name, |
| 279 jdefault_value); | 279 jdefault_value); |
| 280 } | 280 } |
| 281 | 281 |
| 282 bool RegisterChromeFeatureListJni(JNIEnv* env) { | 282 bool RegisterChromeFeatureListJni(JNIEnv* env) { |
| 283 return RegisterNativesImpl(env); | 283 return RegisterNativesImpl(env); |
| 284 } | 284 } |
| 285 | 285 |
| 286 } // namespace android | 286 } // namespace android |
| 287 } // namespace chrome | 287 } // namespace chrome |
| OLD | NEW |