From 4d2b6fb574d019dab4080b3713d3d5e5aa0a91bd Mon Sep 17 00:00:00 2001 From: "jcampan@chromium.org" Date: Fri, 20 Mar 2009 22:28:17 +0000 Subject: 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 --- chrome/browser/webdata/web_database.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'chrome/browser/webdata/web_database.h') diff --git a/chrome/browser/webdata/web_database.h b/chrome/browser/webdata/web_database.h index 95d4906..3584701 100644 --- a/chrome/browser/webdata/web_database.h +++ b/chrome/browser/webdata/web_database.h @@ -178,7 +178,10 @@ class WebDatabase { bool InsertPairIDAndDate(int64 pair_id, const base::Time date_created); // Removes row from the autofill tables given |pair_id|. - bool RemoveFormElement(int64 pair_id); + bool RemoveFormElementForID(int64 pair_id); + + // Removes row from the autofill tables for the given |name| |value| pair. + bool RemoveFormElement(const std::wstring& name, const std::wstring& value); ////////////////////////////////////////////////////////////////////////////// // -- cgit v1.1