diff options
author | isherman@chromium.org <isherman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-17 01:13:31 +0000 |
---|---|---|
committer | isherman@chromium.org <isherman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-17 01:13:31 +0000 |
commit | 447c2a9ab2d12fdff6a58d8bb8500c2c505dfbe0 (patch) | |
tree | 7dfe49084184a412819f7508bfbb23dbadb97d32 /chrome | |
parent | 0c186d987a01ac3f4e0fb68fd79b4bbc2492e756 (diff) | |
download | chromium_src-447c2a9ab2d12fdff6a58d8bb8500c2c505dfbe0.zip chromium_src-447c2a9ab2d12fdff6a58d8bb8500c2c505dfbe0.tar.gz chromium_src-447c2a9ab2d12fdff6a58d8bb8500c2c505dfbe0.tar.bz2 |
Fix a couple of autofill typos
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/5854004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69495 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rw-r--r-- | chrome/browser/autofill/autofill_manager.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/chrome/browser/autofill/autofill_manager.cc b/chrome/browser/autofill/autofill_manager.cc index 378066d..1623752 100644 --- a/chrome/browser/autofill/autofill_manager.cc +++ b/chrome/browser/autofill/autofill_manager.cc @@ -257,8 +257,9 @@ bool AutoFillManager::GetAutoFillSuggestions(const FormData& form, } // If the form is auto-filled and the renderer is querying for suggestions, - // then the user is editing the value of a field. In this case, mimick - // autocomplete: don't display or icons, as that information is redundant. + // then the user is editing the value of a field. In this case, mimic + // autocomplete: don't display labels or icons, as that information is + // redundant. if (FormIsAutoFilled(form_structure, form, is_filling_credit_card)) { labels.assign(labels.size(), string16()); icons.assign(icons.size(), string16()); |