Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(826)

Unified Diff: chrome/browser/webdata/web_database.h

Issue 42258: Add way to remove entries from autocomplete (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/webdata/web_data_service.cc ('k') | chrome/browser/webdata/web_database.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/webdata/web_database.h
===================================================================
--- chrome/browser/webdata/web_database.h (revision 11686)
+++ chrome/browser/webdata/web_database.h (working copy)
@@ -178,8 +178,11 @@
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);
+
//////////////////////////////////////////////////////////////////////////////
//
// Web Apps
« no previous file with comments | « chrome/browser/webdata/web_data_service.cc ('k') | chrome/browser/webdata/web_database.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698