Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(397)

Unified Diff: content/browser/payments/payment_app_content_unittest_base.cc

Issue 2665583002: PaymentApp: Rename PaymentAppRequestData to PaymentAppRequest. (Closed)
Patch Set: PaymentApp: Rename PaymentAppRequestData to PaymentAppRequest. Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/payments/payment_app.mojom ('k') | content/browser/payments/payment_app_provider_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/payments/payment_app_content_unittest_base.cc
diff --git a/content/browser/payments/payment_app_content_unittest_base.cc b/content/browser/payments/payment_app_content_unittest_base.cc
index cee7dc49cb261de404f3cf3b32c1057c5f5165e9..9b99bdbb61c15b8135f3bf5b9fe4d596419bb1ea 100644
--- a/content/browser/payments/payment_app_content_unittest_base.cc
+++ b/content/browser/payments/payment_app_content_unittest_base.cc
@@ -70,11 +70,12 @@ class PaymentAppContentUnitTestBase::PaymentAppForWorkerTestHelper
}
void OnPaymentRequestEvent(
- payments::mojom::PaymentAppRequestDataPtr data,
+ payments::mojom::PaymentAppRequestPtr app_request,
const mojom::ServiceWorkerEventDispatcher::
DispatchPaymentRequestEventCallback& callback) override {
ASSERT_FALSE(was_dispatched_);
- EmbeddedWorkerTestHelper::OnPaymentRequestEvent(std::move(data), callback);
+ EmbeddedWorkerTestHelper::OnPaymentRequestEvent(std::move(app_request),
+ callback);
was_dispatched_ = true;
}
« no previous file with comments | « components/payments/payment_app.mojom ('k') | content/browser/payments/payment_app_provider_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698