From d0e941c5beca0b957d8e950b55ab2aa67d6b9be4 Mon Sep 17 00:00:00 2001 From: "ramankk@chromium.org" Date: Fri, 21 Jun 2013 19:35:54 +0000 Subject: Talk to production wallet server when Autocheckout experiment is enabled BUG=232075 Review URL: https://chromiumcodereview.appspot.com/16749002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@207904 0039d316-1c4b-4281-b951-d872f2087c98 --- components/autofill/content/browser/wallet/wallet_service_url.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'components') 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() { -- cgit v1.1