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

Unified Diff: components/autofill/core/browser/webdata/autofill_webdata_backend_impl.h

Issue 480953002: Implement "Autofill form data" import for Firefox (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Review feedback (simplify Read method) Created 6 years, 3 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: components/autofill/core/browser/webdata/autofill_webdata_backend_impl.h
diff --git a/components/autofill/core/browser/webdata/autofill_webdata_backend_impl.h b/components/autofill/core/browser/webdata/autofill_webdata_backend_impl.h
index 6db3f99d9c8d8fb53b4bb3508255c203405d2f57..8cf3ead2c15908f9d66cd3e587267f2bb7f718cc 100644
--- a/components/autofill/core/browser/webdata/autofill_webdata_backend_impl.h
+++ b/components/autofill/core/browser/webdata/autofill_webdata_backend_impl.h
@@ -113,6 +113,11 @@ class AutofillWebDataBackendImpl
// Returns all Autofill profiles from the web database.
scoped_ptr<WDTypedResult> GetAutofillProfiles(WebDatabase* db);
+ // Updates Autofill entries in the web database.
+ WebDatabase::State UpdateAutofillEntries(
+ const std::vector<autofill::AutofillEntry>& autofill_entries,
+ WebDatabase* db);
+
// Adds a credit card to the web database.
WebDatabase::State AddCreditCard(const CreditCard& credit_card,
WebDatabase* db);

Powered by Google App Engine
This is Rietveld 408576698