diff options
author | estade <estade@chromium.org> | 2015-01-12 15:58:12 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-01-13 00:01:29 +0000 |
commit | b9ba731a6acb79fcd6a4000e6d450a58ecf48f20 (patch) | |
tree | b84765cbe9eae32ec539183a1ae95929dcdae0da /components/autofill | |
parent | f956c08919f02355fd2cea4f08fc1a1f1e4bfaa6 (diff) | |
download | chromium_src-b9ba731a6acb79fcd6a4000e6d450a58ecf48f20.zip chromium_src-b9ba731a6acb79fcd6a4000e6d450a58ecf48f20.tar.gz chromium_src-b9ba731a6acb79fcd6a4000e6d450a58ecf48f20.tar.bz2 |
fix typo from 4660f1d3
BUG=none
Review URL: https://codereview.chromium.org/830373004
Cr-Commit-Position: refs/heads/master@{#311151}
Diffstat (limited to 'components/autofill')
-rw-r--r-- | components/autofill/core/browser/autofill_manager.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/autofill/core/browser/autofill_manager.cc b/components/autofill/core/browser/autofill_manager.cc index 9879752..2de96fc 100644 --- a/components/autofill/core/browser/autofill_manager.cc +++ b/components/autofill/core/browser/autofill_manager.cc @@ -700,7 +700,7 @@ void AutofillManager::OnUnmaskVerificationResult(bool success) { DCHECK_EQ(kDiscoverCard, unmasking_card_.type()); unmasking_card_.SetNumber(base::ASCIIToUTF16("6011000990139424")); } - personal_data_->UpdateCreditCard(unmasking_card_); + personal_data_->UpdateServerCreditCard(unmasking_card_); FillCreditCardForm(unmasking_query_id_, unmasking_form_, unmasking_field_, unmasking_card_); } |