HomeSort by relevance Sort by last modified time
    Searched refs:imported_card (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/components/autofill/core/browser/
credit_card.cc 519 bool CreditCard::UpdateFromImportedCard(const CreditCard& imported_card,
522 imported_card.GetInfo(AutofillType(CREDIT_CARD_NUMBER), app_locale)) {
530 if (this->IsVerified() && !imported_card.IsVerified())
533 set_origin(imported_card.origin());
538 if (!imported_card.name_on_card_.empty())
539 name_on_card_ = imported_card.name_on_card_;
541 // The expiration date for |imported_card| should always be set.
542 DCHECK(imported_card.expiration_month_ && imported_card.expiration_year_);
543 expiration_month_ = imported_card.expiration_month_
    [all...]
credit_card.h 85 // If the card numbers for |this| and |imported_card| match, and merging the
89 bool UpdateFromImportedCard(const CreditCard& imported_card,
personal_data_manager.cc 959 const CreditCard& imported_card) {
960 DCHECK(!imported_card.number().empty());
964 // Set to true if |imported_card| is merged into the credit card list.
967 std::string guid = imported_card.guid();
973 // If |imported_card| has not yet been merged, check whether it should be
975 if (!merged && card->UpdateFromImportedCard(imported_card, app_locale_)) {
984 credit_cards.push_back(imported_card);
    [all...]
  /external/chromium_org/chrome/browser/ui/autofill/
autofill_dialog_controller_unittest.cc 2516 const CreditCard& imported_card = test_pdm->imported_credit_card(); local
2537 const CreditCard& imported_card = test_pdm->imported_credit_card(); local
    [all...]

Completed in 749 milliseconds