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

Unified Diff: components/autofill/core/browser/autofill_metrics_unittest.cc

Issue 2844463004: Rename card 'type' into 'issuer network.' (Closed)
Patch Set: read -> use 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/autofill_metrics_unittest.cc
diff --git a/components/autofill/core/browser/autofill_metrics_unittest.cc b/components/autofill/core/browser/autofill_metrics_unittest.cc
index 3372ee378848aebebcdd7a6fffd167b5735f9b72..888adea8308a2a036beef99f62783dc129f060ed 100644
--- a/components/autofill/core/browser/autofill_metrics_unittest.cc
+++ b/components/autofill/core/browser/autofill_metrics_unittest.cc
@@ -177,7 +177,7 @@ class TestPersonalDataManager : public PersonalDataManager {
std::unique_ptr<CreditCard> credit_card = base::MakeUnique<CreditCard>(
CreditCard::MASKED_SERVER_CARD, "server_id");
credit_card->set_guid("10000000-0000-0000-0000-000000000002");
- credit_card->SetTypeForMaskedCard(kDiscoverCard);
+ credit_card->SetNetworkForMaskedCard(kDiscoverCard);
server_credit_cards_.push_back(std::move(credit_card));
}
if (include_full_server_credit_card) {

Powered by Google App Engine
This is Rietveld 408576698