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

Side by Side Diff: third_party/WebKit/Source/modules/payments/ShippingAddress.cpp

Issue 1753543002: PaymentRequest Mojo bindings. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@interface
Patch Set: Rename WebStuff into PlatformStuff Created 4 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
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "modules/payments/ShippingAddress.h"
6
7 #include "platform/payments/PlatformShippingAddress.h"
8
9 namespace blink {
10
11 ShippingAddress::ShippingAddress(const PlatformShippingAddress& address)
12 : m_regionCode(address.regionCode)
13 , m_addressLine(address.addressLine)
14 , m_administrativeArea(address.administrativeArea)
15 , m_locality(address.locality)
16 , m_dependentLocality(address.dependentLocality)
17 , m_postalCode(address.postalCode)
18 , m_sortingCode(address.sortingCode)
19 , m_languageCode(address.languageCode)
20 , m_organization(address.organization)
21 , m_recipient(address.recipient)
22 {
23 }
24
25 ShippingAddress::~ShippingAddress() {}
26
27 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698