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 d6c901844d28300428af349a0555aded28c39c54..f6554c6d603ff1acb847fb205cbf6bf3f3901980 100644 |
--- a/components/autofill/content/browser/wallet/wallet_service_url.cc |
+++ b/components/autofill/content/browser/wallet/wallet_service_url.cc |
@@ -27,9 +27,8 @@ const char kSandboxWalletSecureServiceUrl[] = |
"https://wallet-web.sandbox.google.com/"; |
bool IsWalletProductionEnabled() { |
- const CommandLine& command_line = *CommandLine::ForCurrentProcess(); |
- return command_line.HasSwitch(switches::kWalletServiceUseProd) || |
- base::FieldTrialList::FindFullName("WalletProductionService") == "Yes"; |
+ const CommandLine* command_line = CommandLine::ForCurrentProcess(); |
+ return !command_line->HasSwitch(switches::kWalletServiceUseSandbox); |
} |
GURL GetWalletHostUrl() { |