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

Unified Diff: ios/chrome/browser/ui/payments/payment_method_selection_coordinator_unittest.mm

Issue 2965073002: [Payment Request] Moves PaymentRequest into the payments namespace (Closed)
Patch Set: rebase Created 3 years, 5 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
Index: ios/chrome/browser/ui/payments/payment_method_selection_coordinator_unittest.mm
diff --git a/ios/chrome/browser/ui/payments/payment_method_selection_coordinator_unittest.mm b/ios/chrome/browser/ui/payments/payment_method_selection_coordinator_unittest.mm
index bfa19950b26d3a2a25d03dc87b15cfb95e2819ce..616e75ca32ec3985fe50f31d51021b36de53c10f 100644
--- a/ios/chrome/browser/ui/payments/payment_method_selection_coordinator_unittest.mm
+++ b/ios/chrome/browser/ui/payments/payment_method_selection_coordinator_unittest.mm
@@ -42,7 +42,7 @@ class PaymentRequestPaymentMethodSelectionCoordinatorTest
personal_data_manager_.AddTestingCreditCard(&credit_card1_);
credit_card2_.set_use_count(5U);
personal_data_manager_.AddTestingCreditCard(&credit_card2_);
- payment_request_ = base::MakeUnique<TestPaymentRequest>(
+ payment_request_ = base::MakeUnique<payments::TestPaymentRequest>(
payment_request_test_util::CreateTestWebPaymentRequest(),
&personal_data_manager_);
}
@@ -53,7 +53,7 @@ class PaymentRequestPaymentMethodSelectionCoordinatorTest
autofill::CreditCard credit_card1_;
autofill::CreditCard credit_card2_;
autofill::TestPersonalDataManager personal_data_manager_;
- std::unique_ptr<TestPaymentRequest> payment_request_;
+ std::unique_ptr<payments::TestPaymentRequest> payment_request_;
};
// Tests that invoking start and stop on the coordinator presents and dismisses

Powered by Google App Engine
This is Rietveld 408576698