| Index: third_party/WebKit/Source/modules/payments/PaymentRequest.cpp
|
| diff --git a/third_party/WebKit/Source/modules/payments/PaymentRequest.cpp b/third_party/WebKit/Source/modules/payments/PaymentRequest.cpp
|
| index ce4cc78953d8cc68aa03ebffe9fd6e3219bb4c9d..8e6e3691072eb920671ba1936f791eba2e4ad105 100644
|
| --- a/third_party/WebKit/Source/modules/payments/PaymentRequest.cpp
|
| +++ b/third_party/WebKit/Source/modules/payments/PaymentRequest.cpp
|
| @@ -103,6 +103,8 @@ struct TypeConverter<PaymentOptionsPtr, blink::PaymentOptions> {
|
| static PaymentOptionsPtr Convert(const blink::PaymentOptions& input)
|
| {
|
| PaymentOptionsPtr output = PaymentOptions::New();
|
| + output->request_payer_email = input.requestPayerEmail();
|
| + output->request_payer_phone = input.requestPayerPhone();
|
| output->request_shipping = input.requestShipping();
|
| return output;
|
| }
|
|
|