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

Unified Diff: components/autofill/core/browser/payments/full_card_request_unittest.cc

Issue 2829853008: Stores server card as a full server card when upload to server succeeds. (Closed)
Patch Set: Renames AddServerCreditCard to AddFullServerCreditCard. Adds DCHECK to verify that we are in a tran… Created 3 years, 8 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: components/autofill/core/browser/payments/full_card_request_unittest.cc
diff --git a/components/autofill/core/browser/payments/full_card_request_unittest.cc b/components/autofill/core/browser/payments/full_card_request_unittest.cc
index 76e3637540b6bd0886fe17e047d4dc0edd350b05..a9455bee66bb53fe2c74cc2e63f505e51196c348 100644
--- a/components/autofill/core/browser/payments/full_card_request_unittest.cc
+++ b/components/autofill/core/browser/payments/full_card_request_unittest.cc
@@ -102,7 +102,8 @@ class FullCardRequestTest : public testing::Test,
std::unique_ptr<base::DictionaryValue> legal_message) override {
ASSERT_TRUE(false) << "No upload details in this test";
}
- void OnDidUploadCard(AutofillClient::PaymentsRpcResult result) override {
+ void OnDidUploadCard(AutofillClient::PaymentsRpcResult result,
+ const std::string& server_id) override {
ASSERT_TRUE(false) << "No card uploads in this test.";
}

Powered by Google App Engine
This is Rietveld 408576698