OLD | NEW |
(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 |
OLD | NEW |