diff options
Diffstat (limited to 'components/autofill/content')
-rw-r--r-- | components/autofill/content/browser/wallet/wallet_service_url.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/components/autofill/content/browser/wallet/wallet_service_url.cc b/components/autofill/content/browser/wallet/wallet_service_url.cc index 708cbda..7bad019 100644 --- a/components/autofill/content/browser/wallet/wallet_service_url.cc +++ b/components/autofill/content/browser/wallet/wallet_service_url.cc @@ -29,7 +29,8 @@ const char kSandboxWalletSecureServiceUrl[] = bool IsWalletProductionEnabled() { const CommandLine& command_line = *CommandLine::ForCurrentProcess(); return command_line.HasSwitch(switches::kWalletServiceUseProd) || - base::FieldTrialList::FindFullName("WalletProductionService") == "Yes"; + base::FieldTrialList::FindFullName("WalletProductionService") == "Yes" || + base::FieldTrialList::FindFullName("Autocheckout") == "Yes"; } GURL GetWalletHostUrl() { |