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