| Index: third_party/WebKit/Source/modules/payments/AbortTest.cpp
|
| diff --git a/third_party/WebKit/Source/modules/payments/AbortTest.cpp b/third_party/WebKit/Source/modules/payments/AbortTest.cpp
|
| index 08b37bde1cf26cbaa8ed2db84e8032909454ed49..532450ef03df97143bee28e6d1b569cfce0a2e71 100644
|
| --- a/third_party/WebKit/Source/modules/payments/AbortTest.cpp
|
| +++ b/third_party/WebKit/Source/modules/payments/AbortTest.cpp
|
| @@ -71,7 +71,8 @@ TEST(AbortTest, FailedAbortShouldRejectAbortPromise) {
|
| request->abort(scope.getScriptState())
|
| .then(funcs.expectNoCall(), funcs.expectCall());
|
|
|
| - static_cast<mojom::blink::PaymentRequestClient*>(request)->OnAbort(false);
|
| + static_cast<payments::mojom::blink::PaymentRequestClient*>(request)->OnAbort(
|
| + false);
|
| }
|
|
|
| // After the browser is unable to abort the payment once, the second abort()
|
| @@ -85,7 +86,8 @@ TEST(AbortTest, CanAbortAgainAfterFirstAbortRejected) {
|
| buildPaymentDetailsForTest(), scope.getExceptionState());
|
| request->show(scope.getScriptState());
|
| request->abort(scope.getScriptState());
|
| - static_cast<mojom::blink::PaymentRequestClient*>(request)->OnAbort(false);
|
| + static_cast<payments::mojom::blink::PaymentRequestClient*>(request)->OnAbort(
|
| + false);
|
|
|
| request->abort(scope.getScriptState())
|
| .then(funcs.expectNoCall(), funcs.expectNoCall());
|
| @@ -106,7 +108,8 @@ TEST(AbortTest, SuccessfulAbortShouldRejectShowPromiseAndResolveAbortPromise) {
|
| request->abort(scope.getScriptState())
|
| .then(funcs.expectCall(), funcs.expectNoCall());
|
|
|
| - static_cast<mojom::blink::PaymentRequestClient*>(request)->OnAbort(true);
|
| + static_cast<payments::mojom::blink::PaymentRequestClient*>(request)->OnAbort(
|
| + true);
|
| }
|
|
|
| } // namespace
|
|
|