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

Side by Side Diff: content/public/browser/payment_instrument.h

Issue 2873683002: PaymentHandler: Implement GetAllPaymentApps(). (Closed)
Patch Set: rebased 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 #ifndef CONTENT_PUBLIC_BROWSER_PAYMENT_INSTRUMENT_H_
6 #define CONTENT_PUBLIC_BROWSER_PAYMENT_INSTRUMENT_H_
7
8 #include <stdint.h>
9 #include <string>
10 #include <vector>
11
12 #include "content/common/content_export.h"
13 #include "url/gurl.h"
14
15 namespace content {
16
17 // This class represents the stored payment instrument in UA.
18 struct CONTENT_EXPORT PaymentInstrument {
nasko 2017/05/11 21:45:39 Since this struct is contained entirely inside con
zino 2017/05/12 20:59:21 The struct is used in chrome layer. Once the payme
nasko 2017/05/12 21:12:10 I don't see an include statement for that file the
19 PaymentInstrument();
20 ~PaymentInstrument();
21
22 // Id of the service worker registration this instrument is associated with.
23 int64_t registration_id = 0;
24
25 // Id of this payment instrument. This key will be passed to the payment
26 // handler to indicate the instrument selected by the user.
27 std::string instrument_key;
28
29 // Origin of the payment app provider that provides this payment instrument.
30 GURL origin;
31
32 // Label for this payment instrument.
33 std::string name;
34
35 // A list of one or more payment method identifiers of the payment methods
36 // supported by this payment instrument.
37 std::vector<std::string> enabled_methods;
38 };
39
40 } // namespace content
41
42 #endif // CONTENT_PUBLIC_BROWSER_PAYMENT_INSTRUMENT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698