| 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 50029d323bdf717e491337a84dd95309cfa5aaa5..4499efe037381888c9d9019ae884b845abf326cc 100644
|
| --- a/third_party/WebKit/Source/modules/payments/PaymentRequest.cpp
|
| +++ b/third_party/WebKit/Source/modules/payments/PaymentRequest.cpp
|
| @@ -58,6 +58,8 @@ struct TypeConverter<PaymentCurrencyAmountPtr, blink::PaymentCurrencyAmount> {
|
| PaymentCurrencyAmountPtr output = PaymentCurrencyAmount::New();
|
| output->currency = input.currency();
|
| output->value = input.value();
|
| + if (input.hasCurrencySystem())
|
| + output->system = input.currencySystem();
|
| return output;
|
| }
|
| };
|
|
|