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

Unified Diff: chrome/browser/api/webdata/autofill_web_data.h

Issue 12987023: Rip autofill code out of webdataservice (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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
Index: chrome/browser/api/webdata/autofill_web_data.h
diff --git a/chrome/browser/api/webdata/autofill_web_data.h b/chrome/browser/api/webdata/autofill_web_data.h
index e7d2bca2eeaf7ef9371e6fd82ff4b70d9c18d1da..c9cef158b7125885e8f97cb9f5397cbebcab372b 100644
--- a/chrome/browser/api/webdata/autofill_web_data.h
+++ b/chrome/browser/api/webdata/autofill_web_data.h
@@ -75,6 +75,14 @@ class AutofillWebData {
// consumer owns the credit cards.
virtual WebDataServiceBase::Handle
GetCreditCards(WebDataServiceConsumer* consumer) = 0;
+
+ // Removes Autofill records from the database.
+ virtual void RemoveAutofillProfilesAndCreditCardsModifiedBetween(
+ const base::Time& delete_begin, const base::Time& delete_end) = 0;
+
+ // Removes form elements recorded for Autocomplete from the database.
dhollowa 2013/03/25 21:50:38 Please move this up near top to group with the oth
Cait (Slow) 2013/03/26 14:29:23 Done.
+ virtual void RemoveFormElementsAddedBetween(
+ const base::Time& delete_begin, const base::Time& delete_end) = 0;
};
#endif // CHROME_BROWSER_API_WEBDATA_AUTOFILL_WEB_DATA_H_

Powered by Google App Engine
This is Rietveld 408576698