diff options
author | ramankk@chromium.org <ramankk@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-21 19:35:54 +0000 |
---|---|---|
committer | ramankk@chromium.org <ramankk@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-21 19:35:54 +0000 |
commit | d0e941c5beca0b957d8e950b55ab2aa67d6b9be4 (patch) | |
tree | 249e08e1ad431352daa53a029785b45e764a2334 /components | |
parent | be4f609a09ec672199a53ffec1703d279a6d6f41 (diff) | |
download | chromium_src-d0e941c5beca0b957d8e950b55ab2aa67d6b9be4.zip chromium_src-d0e941c5beca0b957d8e950b55ab2aa67d6b9be4.tar.gz chromium_src-d0e941c5beca0b957d8e950b55ab2aa67d6b9be4.tar.bz2 |
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
Diffstat (limited to 'components')
-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() { |