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

Side by Side Diff: third_party/WebKit/Source/modules/payments/PaymentResponse.h

Issue 2713033004: Layered component for web payments (Closed)
Patch Set: Rebase Created 3 years, 9 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
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef PaymentResponse_h 5 #ifndef PaymentResponse_h
6 #define PaymentResponse_h 6 #define PaymentResponse_h
7 7
8 #include "bindings/core/v8/ScriptPromise.h" 8 #include "bindings/core/v8/ScriptPromise.h"
9 #include "bindings/core/v8/ScriptValue.h" 9 #include "bindings/core/v8/ScriptValue.h"
10 #include "bindings/core/v8/ScriptWrappable.h" 10 #include "bindings/core/v8/ScriptWrappable.h"
11 #include "components/payments/payment_request.mojom-blink.h" 11 #include "components/payments/content/payment_request.mojom-blink.h"
12 #include "modules/ModulesExport.h" 12 #include "modules/ModulesExport.h"
13 #include "modules/payments/PaymentCurrencyAmount.h" 13 #include "modules/payments/PaymentCurrencyAmount.h"
14 #include "platform/heap/Handle.h" 14 #include "platform/heap/Handle.h"
15 #include "wtf/Noncopyable.h" 15 #include "wtf/Noncopyable.h"
16 #include "wtf/text/WTFString.h" 16 #include "wtf/text/WTFString.h"
17 17
18 namespace blink { 18 namespace blink {
19 19
20 class ExceptionState; 20 class ExceptionState;
21 class PaymentAddress; 21 class PaymentAddress;
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 String m_shippingOption; 54 String m_shippingOption;
55 String m_payerName; 55 String m_payerName;
56 String m_payerEmail; 56 String m_payerEmail;
57 String m_payerPhone; 57 String m_payerPhone;
58 Member<PaymentCompleter> m_paymentCompleter; 58 Member<PaymentCompleter> m_paymentCompleter;
59 }; 59 };
60 60
61 } // namespace blink 61 } // namespace blink
62 62
63 #endif // PaymentResponse_h 63 #endif // PaymentResponse_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698