Index: third_party/WebKit/Source/modules/payments/PaymentAddress.cpp |
diff --git a/third_party/WebKit/Source/modules/payments/ShippingAddress.cpp b/third_party/WebKit/Source/modules/payments/PaymentAddress.cpp |
similarity index 83% |
rename from third_party/WebKit/Source/modules/payments/ShippingAddress.cpp |
rename to third_party/WebKit/Source/modules/payments/PaymentAddress.cpp |
index 05ec13528e69b6d60ec8f42182fa221f587a003a..7fa4165b6b919ebfcf9492d20da08b2c24061e50 100644 |
--- a/third_party/WebKit/Source/modules/payments/ShippingAddress.cpp |
+++ b/third_party/WebKit/Source/modules/payments/PaymentAddress.cpp |
@@ -2,11 +2,11 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-#include "modules/payments/ShippingAddress.h" |
+#include "modules/payments/PaymentAddress.h" |
namespace blink { |
-ShippingAddress::ShippingAddress(mojom::blink::ShippingAddressPtr address) |
+PaymentAddress::PaymentAddress(mojom::blink::PaymentAddressPtr address) |
: m_regionCode(address->region_code) |
, m_addressLine(address->address_line.PassStorage()) |
, m_administrativeArea(address->administrative_area) |
@@ -24,6 +24,6 @@ ShippingAddress::ShippingAddress(mojom::blink::ShippingAddressPtr address) |
} |
} |
-ShippingAddress::~ShippingAddress() {} |
+PaymentAddress::~PaymentAddress() {} |
} // namespace blink |