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

Side by Side Diff: chrome/common/chrome_switches.cc

Issue 2437593007: [Payments] Field trial and flag to abort payment request if no card. (Closed)
Patch Set: Added histogram Created 4 years, 1 month 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
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/common/chrome_switches.h" 5 #include "chrome/common/chrome_switches.h"
6 6
7 #include "base/base_switches.h" 7 #include "base/base_switches.h"
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 #include "build/build_config.h" 9 #include "build/build_config.h"
10 10
(...skipping 1073 matching lines...) Expand 10 before | Expand all | Expand 10 after
1084 const char kProgressBarAnimation[] = "progress-bar-animation"; 1084 const char kProgressBarAnimation[] = "progress-bar-animation";
1085 1085
1086 // Specifies a particular tab management experiment to enable. 1086 // Specifies a particular tab management experiment to enable.
1087 const char kTabManagementExperimentTypeDisabled[] = 1087 const char kTabManagementExperimentTypeDisabled[] =
1088 "tab-management-experiment-type-disabled"; 1088 "tab-management-experiment-type-disabled";
1089 const char kTabManagementExperimentTypeElderberry[] = 1089 const char kTabManagementExperimentTypeElderberry[] =
1090 "tab-management-experiment-type-elderberry"; 1090 "tab-management-experiment-type-elderberry";
1091 1091
1092 // Custom WebAPK server URL for the sake of testing. 1092 // Custom WebAPK server URL for the sake of testing.
1093 const char kWebApkServerUrl[] = "webapk-server-url"; 1093 const char kWebApkServerUrl[] = "webapk-server-url";
1094
1095 // Enables the abort of a Payment Request when the user has no credit card.
1096 const char kEnablePaymentRequestNoCardAbort[] = "enable-no-card-abort";
1097
1098 // Disables the abort of a Payment Request when the user has no credit card.
1099 const char kDisablePaymentRequestNoCardAbort[] = "disable-no-card-abort";
please use gerrit instead 2016/10/21 13:36:27 Please remove this.
sebsg 2016/10/21 16:49:55 Done.
1094 #endif // defined(OS_ANDROID) 1100 #endif // defined(OS_ANDROID)
1095 1101
1096 #if defined(OS_CHROMEOS) 1102 #if defined(OS_CHROMEOS)
1097 // Enables native cups integration 1103 // Enables native cups integration
1098 const char kEnableNativeCups[] = "enable-native-cups"; 1104 const char kEnableNativeCups[] = "enable-native-cups";
1099 #endif // defined(OS_CHROMEOS) 1105 #endif // defined(OS_CHROMEOS)
1100 1106
1101 #if defined(USE_ASH) 1107 #if defined(USE_ASH)
1102 const char kOpenAsh[] = "open-ash"; 1108 const char kOpenAsh[] = "open-ash";
1103 #endif 1109 #endif
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after
1327 1333
1328 // ----------------------------------------------------------------------------- 1334 // -----------------------------------------------------------------------------
1329 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. 1335 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE.
1330 // 1336 //
1331 // You were going to just dump your switches here, weren't you? Instead, please 1337 // You were going to just dump your switches here, weren't you? Instead, please
1332 // put them in alphabetical order above, or in order inside the appropriate 1338 // put them in alphabetical order above, or in order inside the appropriate
1333 // ifdef at the bottom. The order should match the header. 1339 // ifdef at the bottom. The order should match the header.
1334 // ----------------------------------------------------------------------------- 1340 // -----------------------------------------------------------------------------
1335 1341
1336 } // namespace switches 1342 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698