Chromium Code Reviews| 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_ |