Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(21)

Side by Side Diff: chrome/browser/about_flags.cc

Issue 2865143004: [Payments] About flags entry for Service Worker payment apps (Closed)
Patch Set: histograms Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | chrome/browser/flag_descriptions.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/flag_descriptions.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698