Index: components/autofill/core/browser/webdata/autofill_webdata.h |
diff --git a/components/autofill/core/browser/webdata/autofill_webdata.h b/components/autofill/core/browser/webdata/autofill_webdata.h |
index fbd4107b894ab21ec2b407421828f7a9907f2dcf..2d636ef718a85232baf2b6329f569380a40649c6 100644 |
--- a/components/autofill/core/browser/webdata/autofill_webdata.h |
+++ b/components/autofill/core/browser/webdata/autofill_webdata.h |
@@ -23,6 +23,7 @@ class WebDataServiceConsumer; |
namespace autofill { |
+class AutofillEntry; |
class AutofillProfile; |
class CreditCard; |
struct FormFieldData; |
@@ -75,6 +76,10 @@ class AutofillWebData { |
virtual WebDataServiceBase::Handle GetAutofillProfiles( |
WebDataServiceConsumer* consumer) = 0; |
+ // Schedules a task to update autofill entries to the web database. |
Ilya Sherman
2014/08/20 05:47:42
nit: "to the web database" -> "in the web database
Nikhil
2014/08/20 11:29:18
Done.
|
+ virtual void UpdateAutofillEntries( |
+ const std::vector<AutofillEntry>& autofill_entries) = 0; |
+ |
// Schedules a task to add credit card to the web database. |
virtual void AddCreditCard(const CreditCard& credit_card) = 0; |