Index: third_party/WebKit/public/platform/modules/payments/payment_request.mojom |
diff --git a/third_party/WebKit/public/platform/modules/payments/payment_request.mojom b/third_party/WebKit/public/platform/modules/payments/payment_request.mojom |
index db4e10d390638f5bbd6cbcb86e963c57e8cad06c..cbc9535e54db2ae646e1d5b32d7c6ba059a71edb 100644 |
--- a/third_party/WebKit/public/platform/modules/payments/payment_request.mojom |
+++ b/third_party/WebKit/public/platform/modules/payments/payment_request.mojom |
@@ -9,11 +9,11 @@ module blink.mojom; |
// process. Built either by the browser or a payment app. |
struct PaymentAddress { |
// ISO 3166 country code. Two upper case ASCII letters. |
- string region_code; |
+ string country; |
array<string> address_line; |
- string administrative_area; |
- string locality; |
+ string region; |
+ string city; |
string dependent_locality; |
string postal_code; |
string sorting_code; |
@@ -28,6 +28,8 @@ struct PaymentAddress { |
string organization; |
string recipient; |
+ string careOf; |
+ string phone; |
}; |
struct PaymentResponse { |