| Index: chrome/browser/sync/test/integration/autofill_helper.cc
|
| diff --git a/chrome/browser/sync/test/integration/autofill_helper.cc b/chrome/browser/sync/test/integration/autofill_helper.cc
|
| index 7e5741b31af01d6715c0dd6e4ed5c428e7962828..328f54a1fb0b83a3912e9aa4f74e58e9e99600a4 100644
|
| --- a/chrome/browser/sync/test/integration/autofill_helper.cc
|
| +++ b/chrome/browser/sync/test/integration/autofill_helper.cc
|
| @@ -87,7 +87,8 @@ void RunOnDBThreadAndBlock(base::Closure task) {
|
| void GetAllAutofillEntriesOnDBThread(WebDataService* wds,
|
| std::vector<AutofillEntry>* entries) {
|
| DCHECK(BrowserThread::CurrentlyOn(BrowserThread::DB));
|
| - wds->GetDatabase()->GetAutofillTable()->GetAllAutofillEntries(entries);
|
| + AutofillTable::FromWebDatabase(
|
| + wds->GetDatabase())->GetAllAutofillEntries(entries);
|
| }
|
|
|
| std::vector<AutofillEntry> GetAllAutofillEntries(WebDataService* wds) {
|
|
|