OLD | NEW |
(Empty) | |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "components/payments/core/payment_prefs.h" |
| 6 |
| 7 #include "components/pref_registry/pref_registry_syncable.h" |
| 8 |
| 9 namespace payments { |
| 10 |
| 11 const char kPaymentsFirstTransactionCompleted[] = |
| 12 "payments.first_transaction_completed"; |
| 13 |
| 14 void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry) { |
| 15 registry->RegisterBooleanPref(kPaymentsFirstTransactionCompleted, false); |
| 16 } |
| 17 |
| 18 } // namespace payments |
OLD | NEW |