diff options
author | jcampan@chromium.org <jcampan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-20 22:28:17 +0000 |
---|---|---|
committer | jcampan@chromium.org <jcampan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-20 22:28:17 +0000 |
commit | 4d2b6fb574d019dab4080b3713d3d5e5aa0a91bd (patch) | |
tree | e384f04d2a7bc8403cf19929d84447782d6c7871 /chrome/browser/autofill_manager.cc | |
parent | e08a579d8d6701fa48eac6945248855bbb5a70a6 (diff) | |
download | chromium_src-4d2b6fb574d019dab4080b3713d3d5e5aa0a91bd.zip chromium_src-4d2b6fb574d019dab4080b3713d3d5e5aa0a91bd.tar.gz chromium_src-4d2b6fb574d019dab4080b3713d3d5e5aa0a91bd.tar.bz2 |
Pressing the Del key while a item is selected in the autocomplete popup deletes that suggestion from the DB.
BUG=6176
TEST=Bring up the autofill popup in a form. Select an item and press the Del key. The item should be removed from the popup and should not show on subsequent autofill popups.
Review URL: http://codereview.chromium.org/42258
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@12221 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/autofill_manager.cc')
-rw-r--r-- | chrome/browser/autofill_manager.cc | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/chrome/browser/autofill_manager.cc b/chrome/browser/autofill_manager.cc index 8025cbb..5cf318f 100644 --- a/chrome/browser/autofill_manager.cc +++ b/chrome/browser/autofill_manager.cc @@ -74,6 +74,18 @@ void AutofillManager::FetchValuesForName(const std::wstring& name, GetFormValuesForElementName(name, prefix, limit, this); } +void AutofillManager::RemoveValueForName(const std::wstring& name, + const std::wstring& value) { + WebDataService* web_data_service = + profile()->GetWebDataService(Profile::EXPLICIT_ACCESS); + if (!web_data_service) { + NOTREACHED(); + return; + } + + web_data_service->RemoveFormValueForElementName(name, value); +} + void AutofillManager::OnWebDataServiceRequestDone(WebDataService::Handle h, const WDTypedResult* result) { DCHECK(pending_query_handle_); |