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

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

Issue 2811593009: [Payments] move //components/payments/content/*.mojom files to //components/payments/mojom (Closed)
Patch Set: Reland after updating chrome_content_browser_client.cc to fix android build Created 3 years, 8 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/content/payment_request.mojom-blink.h" 11 #include "components/payments/mojom/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 "platform/wtf/Noncopyable.h" 15 #include "platform/wtf/Noncopyable.h"
16 #include "platform/wtf/text/WTFString.h" 16 #include "platform/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 shipping_option_; 54 String shipping_option_;
55 String payer_name_; 55 String payer_name_;
56 String payer_email_; 56 String payer_email_;
57 String payer_phone_; 57 String payer_phone_;
58 Member<PaymentCompleter> payment_completer_; 58 Member<PaymentCompleter> payment_completer_;
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