| Index: components/autofill/core/browser/webdata/autofill_webdata_backend_impl.cc
|
| diff --git a/components/autofill/core/browser/webdata/autofill_webdata_backend_impl.cc b/components/autofill/core/browser/webdata/autofill_webdata_backend_impl.cc
|
| index ccda7ac2ecaede996b284c601a8a8ad8081ede15..bcb9cf542f4dcbc02baa127eaa0539ed1f38417a 100644
|
| --- a/components/autofill/core/browser/webdata/autofill_webdata_backend_impl.cc
|
| +++ b/components/autofill/core/browser/webdata/autofill_webdata_backend_impl.cc
|
| @@ -29,14 +29,12 @@ AutofillWebDataBackendImpl::AutofillWebDataBackendImpl(
|
| scoped_refptr<base::SingleThreadTaskRunner> db_thread,
|
| const base::Closure& on_changed_callback,
|
| const base::Callback<void(syncer::ModelType)>& on_sync_started_callback)
|
| - : base::RefCountedDeleteOnMessageLoop<AutofillWebDataBackendImpl>(
|
| - db_thread),
|
| + : base::RefCountedDeleteOnSequence<AutofillWebDataBackendImpl>(db_thread),
|
| ui_thread_(ui_thread),
|
| db_thread_(db_thread),
|
| web_database_backend_(web_database_backend),
|
| on_changed_callback_(on_changed_callback),
|
| - on_sync_started_callback_(on_sync_started_callback) {
|
| -}
|
| + on_sync_started_callback_(on_sync_started_callback) {}
|
|
|
| void AutofillWebDataBackendImpl::AddObserver(
|
| AutofillWebDataServiceObserverOnDBThread* observer) {
|
|
|