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

Unified Diff: components/autofill/content/browser/wallet/wallet_service_url.cc

Issue 16749002: Talk to production wallet server when Autocheckout experiment is enabled (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/autofill/content/browser/wallet/wallet_service_url.cc
diff --git a/components/autofill/content/browser/wallet/wallet_service_url.cc b/components/autofill/content/browser/wallet/wallet_service_url.cc
index aa5cf991b0da5c573a8deac9f768952a3e391682..04f805c93ea427a774b3097c680fb4edf25b5892 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() {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698