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

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

Issue 2406923002: Move payment_request.mojom file to components/ (Closed)
Patch Set: Add Android test dependencies Created 4 years, 1 month 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 PaymentAddress_h 5 #ifndef PaymentAddress_h
6 #define PaymentAddress_h 6 #define PaymentAddress_h
7 7
8 #include "bindings/core/v8/ScriptValue.h" 8 #include "bindings/core/v8/ScriptValue.h"
9 #include "bindings/core/v8/ScriptWrappable.h" 9 #include "bindings/core/v8/ScriptWrappable.h"
10 #include "components/payments/payment_request.mojom-blink.h"
10 #include "modules/ModulesExport.h" 11 #include "modules/ModulesExport.h"
11 #include "platform/heap/Handle.h" 12 #include "platform/heap/Handle.h"
12 #include "public/platform/modules/payments/payment_request.mojom-blink.h"
13 #include "wtf/Noncopyable.h" 13 #include "wtf/Noncopyable.h"
14 #include "wtf/Vector.h" 14 #include "wtf/Vector.h"
15 #include "wtf/text/WTFString.h" 15 #include "wtf/text/WTFString.h"
16 16
17 namespace blink { 17 namespace blink {
18 18
19 class MODULES_EXPORT PaymentAddress final 19 class MODULES_EXPORT PaymentAddress final
20 : public GarbageCollectedFinalized<PaymentAddress>, 20 : public GarbageCollectedFinalized<PaymentAddress>,
21 public ScriptWrappable { 21 public ScriptWrappable {
22 DEFINE_WRAPPERTYPEINFO(); 22 DEFINE_WRAPPERTYPEINFO();
(...skipping 30 matching lines...) Expand all
53 String m_sortingCode; 53 String m_sortingCode;
54 String m_languageCode; 54 String m_languageCode;
55 String m_organization; 55 String m_organization;
56 String m_recipient; 56 String m_recipient;
57 String m_phone; 57 String m_phone;
58 }; 58 };
59 59
60 } // namespace blink 60 } // namespace blink
61 61
62 #endif // PaymentAddress_h 62 #endif // PaymentAddress_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/modules/payments/DEPS ('k') | third_party/WebKit/Source/modules/payments/PaymentAddress.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698