| 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 829c80832729cd02f05a63a53655d47b1ccee964..3d9c88adbeec6206b11d1209a4e963a96a6fb69a 100644
|
| --- a/third_party/WebKit/public/platform/modules/payments/payment_request.mojom
|
| +++ b/third_party/WebKit/public/platform/modules/payments/payment_request.mojom
|
| @@ -7,7 +7,7 @@ module blink.mojom;
|
|
|
| // The shipping address that the browser process provides to the renderer
|
| // process. Built either by the browser or a payment app.
|
| -struct ShippingAddress {
|
| +struct PaymentAddress {
|
| // ISO 3166 country code. Two upper case ASCII letters.
|
| string region_code;
|
|
|
| @@ -43,12 +43,12 @@ struct PaymentResponse {
|
| // {"nameOnCard": "Jon Doe", "pan": "4111 1111 1111 1111"}
|
| string stringified_details;
|
|
|
| - ShippingAddress? shipping_address;
|
| + PaymentAddress? shipping_address;
|
| string? shipping_option_id;
|
| };
|
|
|
| interface PaymentRequestClient {
|
| - OnShippingAddressChange(ShippingAddress address);
|
| + OnShippingAddressChange(PaymentAddress address);
|
| OnShippingOptionChange(string shipping_option_id);
|
| OnPaymentResponse(PaymentResponse response);
|
| OnError();
|
|
|