| 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 ead29b970a2a5a540b600e3e4455e6d0fdc1edb7..f78531cdce62180b9ec66999e802ff6306fd9e94 100644
|
| --- a/third_party/WebKit/public/platform/modules/payments/payment_request.mojom
|
| +++ b/third_party/WebKit/public/platform/modules/payments/payment_request.mojom
|
| @@ -107,6 +107,12 @@ struct PaymentMethodData {
|
| string stringified_data;
|
| };
|
|
|
| +enum PaymentComplete {
|
| + SUCCESS,
|
| + FAIL,
|
| + UNKNOWN
|
| +};
|
| +
|
| interface PaymentRequest {
|
| SetClient(PaymentRequestClient client);
|
| Show(array<PaymentMethodData> methodData,
|
| @@ -114,5 +120,5 @@ interface PaymentRequest {
|
| PaymentOptions options);
|
| UpdateWith(PaymentDetails details);
|
| Abort();
|
| - Complete(bool success);
|
| + Complete(PaymentComplete result);
|
| };
|
|
|