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

Side by Side Diff: components/payments/core/payment_prefs.cc

Issue 2876663002: [Web Payments] Add data attribution string to dialog (Closed)
Patch Set: Address comments, fix tests compile Created 3 years, 7 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 unified diff | Download patch
OLDNEW
(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
OLDNEW
« no previous file with comments | « components/payments/core/payment_prefs.h ('k') | components/payments/core/payment_request_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698