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

Unified Diff: components/autofill/browser/webdata/autofill_webdata_service.cc

Issue 14081043: Hook up Autofill Backend interface to SyncableServices (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Pure merge Created 7 years, 7 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 | « components/autofill/browser/webdata/autofill_webdata_service.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/autofill/browser/webdata/autofill_webdata_service.cc
diff --git a/components/autofill/browser/webdata/autofill_webdata_service.cc b/components/autofill/browser/webdata/autofill_webdata_service.cc
index d732539efe17d30cf57b063b91d408253ff3a5a5..d1626d7c7ae1febf4f9e23c956bc07c996727d42 100644
--- a/components/autofill/browser/webdata/autofill_webdata_service.cc
+++ b/components/autofill/browser/webdata/autofill_webdata_service.cc
@@ -24,20 +24,6 @@ using content::BrowserThread;
namespace autofill {
-// static
-void AutofillWebDataService::NotifyOfMultipleAutofillChanges(
- AutofillWebDataService* web_data_service) {
- DCHECK(BrowserThread::CurrentlyOn(BrowserThread::DB));
-
- if (!web_data_service)
- return;
-
- BrowserThread::PostTask(
- BrowserThread::UI, FROM_HERE,
- Bind(&AutofillWebDataService::NotifyAutofillMultipleChangedOnUIThread,
- make_scoped_refptr(web_data_service)));
-}
-
AutofillWebDataService::AutofillWebDataService(
scoped_refptr<WebDatabaseService> wdbs,
const ProfileErrorCallback& callback)
@@ -98,12 +84,6 @@ void AutofillWebDataService::RemoveFormElementsAddedBetween(
autofill_backend_, delete_begin, delete_end));
}
-void AutofillWebDataService::RemoveExpiredFormElements() {
- wdbs_->ScheduleDBTask(FROM_HERE,
- Bind(&AutofillWebDataBackendImpl::RemoveExpiredFormElements,
- autofill_backend_));
-}
-
void AutofillWebDataService::RemoveFormValueForElementName(
const base::string16& name, const base::string16& value) {
wdbs_->ScheduleDBTask(FROM_HERE,
« no previous file with comments | « components/autofill/browser/webdata/autofill_webdata_service.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698