Home | History | Annotate | Download | only in common

Lines Matching defs:credit_card

22 #include "components/autofill/core/browser/credit_card.h"
91 CreditCard* credit_card,
96 DCHECK(credit_card);
103 credit_card->SetRawInfo(autofill::CREDIT_CARD_NAME, s.ColumnString16(2));
104 credit_card->SetRawInfo(autofill::CREDIT_CARD_TYPE, s.ColumnString16(3));
105 credit_card->SetRawInfo(autofill::CREDIT_CARD_EXP_MONTH, s.ColumnString16(5));
106 credit_card->SetRawInfo(
114 credit_card->set_guid(s.ColumnString(13));
115 EXPECT_TRUE(base::IsValidGUID(credit_card->guid()));
119 CreditCard* credit_card,
122 DCHECK(credit_card);
125 credit_card->set_guid(s.ColumnString(0));
126 EXPECT_TRUE(base::IsValidGUID(credit_card->guid()));
127 credit_card->SetRawInfo(autofill::CREDIT_CARD_NAME, s.ColumnString16(1));
128 credit_card->SetRawInfo(autofill::CREDIT_CARD_EXP_MONTH, s.ColumnString16(2));
129 credit_card->SetRawInfo(
472 // Tests that the |credit_card| table gets added to the schema for a version 22
476 // |credit_card| table. Version 22 of the schema. Contrast this with the
485 // No |credit_card| table prior to version 23.
502 // |credit_card| table now exists.
509 // Tests that the |credit_card| table gets added to the schema for a corrupt
515 // This schema is taken from a build after the addition of the |credit_card|
905 CreditCard credit_card;
949 &credit_card,
956 EXPECT_NE(profile.guid(), credit_card.guid());
1029 EXPECT_EQ(credit_card, credit_card_a);