| From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 |
| From: Daniel Micay <danielmicay@gmail.com> |
| Date: Tue, 18 Jun 2019 22:28:53 -0400 |
| Subject: [PATCH] disable payment support by default |
| |
| --- |
| components/payments/core/payment_prefs.cc | 2 +- |
| 1 file changed, 1 insertion(+), 1 deletion(-) |
| |
| diff --git a/components/payments/core/payment_prefs.cc b/components/payments/core/payment_prefs.cc |
| index d42858bde4cf7..a632291402897 100644 |
| --- a/components/payments/core/payment_prefs.cc |
| +++ b/components/payments/core/payment_prefs.cc |
| @@ -11,7 +11,7 @@ namespace payments { |
| void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry) { |
| registry->RegisterBooleanPref(kPaymentsFirstTransactionCompleted, false); |
| registry->RegisterBooleanPref( |
| - kCanMakePaymentEnabled, true, |
| + kCanMakePaymentEnabled, false, |
| user_prefs::PrefRegistrySyncable::SYNCABLE_PREF); |
| } |
| |