| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/about_flags.h" | 5 #include "chrome/browser/about_flags.h" |
| 6 | 6 |
| 7 #include <iterator> | 7 #include <iterator> |
| 8 #include <map> | 8 #include <map> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <utility> | 10 #include <utility> |
| (...skipping 2418 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2429 flag_descriptions::kEnableAndroidPayIntegrationV2Description, kOsAndroid, | 2429 flag_descriptions::kEnableAndroidPayIntegrationV2Description, kOsAndroid, |
| 2430 FEATURE_VALUE_TYPE(chrome::android::kAndroidPayIntegrationV2)}, | 2430 FEATURE_VALUE_TYPE(chrome::android::kAndroidPayIntegrationV2)}, |
| 2431 {"enable-web-payments-single-app-ui-skip", | 2431 {"enable-web-payments-single-app-ui-skip", |
| 2432 flag_descriptions::kEnableWebPaymentsSingleAppUiSkipName, | 2432 flag_descriptions::kEnableWebPaymentsSingleAppUiSkipName, |
| 2433 flag_descriptions::kEnableWebPaymentsSingleAppUiSkipDescription, | 2433 flag_descriptions::kEnableWebPaymentsSingleAppUiSkipDescription, |
| 2434 kOsAndroid, | 2434 kOsAndroid, |
| 2435 FEATURE_VALUE_TYPE(chrome::android::kWebPaymentsSingleAppUiSkip)}, | 2435 FEATURE_VALUE_TYPE(chrome::android::kWebPaymentsSingleAppUiSkip)}, |
| 2436 {"android-payment-apps", flag_descriptions::kAndroidPaymentAppsName, | 2436 {"android-payment-apps", flag_descriptions::kAndroidPaymentAppsName, |
| 2437 flag_descriptions::kAndroidPaymentAppsDescription, kOsAndroid, | 2437 flag_descriptions::kAndroidPaymentAppsDescription, kOsAndroid, |
| 2438 FEATURE_VALUE_TYPE(chrome::android::kAndroidPaymentApps)}, | 2438 FEATURE_VALUE_TYPE(chrome::android::kAndroidPaymentApps)}, |
| 2439 {"service-worker-payment-apps", |
| 2440 flag_descriptions::kServiceWorkerPaymentAppsName, |
| 2441 flag_descriptions::kServiceWorkerPaymentAppsDescription, kOsAndroid, |
| 2442 FEATURE_VALUE_TYPE(features::kServiceWorkerPaymentApps)}, |
| 2439 #endif // OS_ANDROID | 2443 #endif // OS_ANDROID |
| 2440 #if defined(OS_CHROMEOS) | 2444 #if defined(OS_CHROMEOS) |
| 2441 {"disable-eol-notification", flag_descriptions::kEolNotificationName, | 2445 {"disable-eol-notification", flag_descriptions::kEolNotificationName, |
| 2442 flag_descriptions::kEolNotificationDescription, kOsCrOS, | 2446 flag_descriptions::kEolNotificationDescription, kOsCrOS, |
| 2443 SINGLE_DISABLE_VALUE_TYPE(chromeos::switches::kDisableEolNotification)}, | 2447 SINGLE_DISABLE_VALUE_TYPE(chromeos::switches::kDisableEolNotification)}, |
| 2444 #endif // OS_CHROMEOS | 2448 #endif // OS_CHROMEOS |
| 2445 {"fill-on-account-select", flag_descriptions::kFillOnAccountSelectName, | 2449 {"fill-on-account-select", flag_descriptions::kFillOnAccountSelectName, |
| 2446 flag_descriptions::kFillOnAccountSelectDescription, kOsAll, | 2450 flag_descriptions::kFillOnAccountSelectDescription, kOsAll, |
| 2447 FEATURE_VALUE_TYPE(password_manager::features::kFillOnAccountSelect)}, | 2451 FEATURE_VALUE_TYPE(password_manager::features::kFillOnAccountSelect)}, |
| 2448 {"new-audio-rendering-mixing-strategy", | 2452 {"new-audio-rendering-mixing-strategy", |
| (...skipping 621 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3070 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0; | 3074 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0; |
| 3071 | 3075 |
| 3072 const FeatureEntry* GetFeatureEntries(size_t* count) { | 3076 const FeatureEntry* GetFeatureEntries(size_t* count) { |
| 3073 *count = arraysize(kFeatureEntries); | 3077 *count = arraysize(kFeatureEntries); |
| 3074 return kFeatureEntries; | 3078 return kFeatureEntries; |
| 3075 } | 3079 } |
| 3076 | 3080 |
| 3077 } // namespace testing | 3081 } // namespace testing |
| 3078 | 3082 |
| 3079 } // namespace about_flags | 3083 } // namespace about_flags |
| OLD | NEW |