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

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

Issue 969103003: Don't save duplicates of wallet addresses to local Autofill. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: make test work Created 5 years, 10 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/core/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/core/browser/webdata/autofill_webdata_service.cc
diff --git a/components/autofill/core/browser/webdata/autofill_webdata_service.cc b/components/autofill/core/browser/webdata/autofill_webdata_service.cc
index 2296f3515d9aa98636f7c953259a863111a1f6aa..2f0e7e245c39037731b1d80872add958b62a58c0 100644
--- a/components/autofill/core/browser/webdata/autofill_webdata_service.cc
+++ b/components/autofill/core/browser/webdata/autofill_webdata_service.cc
@@ -129,11 +129,11 @@ WebDataServiceBase::Handle AutofillWebDataService::GetAutofillProfiles(
consumer);
}
-WebDataServiceBase::Handle AutofillWebDataService::GetAutofillServerProfiles(
+WebDataServiceBase::Handle AutofillWebDataService::GetServerProfiles(
WebDataServiceConsumer* consumer) {
- return wdbs_->ScheduleDBTaskWithResult(FROM_HERE,
- Bind(&AutofillWebDataBackendImpl::GetAutofillServerProfiles,
- autofill_backend_),
+ return wdbs_->ScheduleDBTaskWithResult(
+ FROM_HERE,
+ Bind(&AutofillWebDataBackendImpl::GetServerProfiles, autofill_backend_),
consumer);
}
« no previous file with comments | « components/autofill/core/browser/webdata/autofill_webdata_service.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698