| Index: components/autofill/core/browser/webdata/autocomplete_syncable_service.h
|
| diff --git a/components/autofill/core/browser/webdata/autocomplete_syncable_service.h b/components/autofill/core/browser/webdata/autocomplete_syncable_service.h
|
| index 52932be7fe10164b94229ab7ece15641026494dd..c94383b7286e04d2265e2a2449e7a379dbc22ba8 100644
|
| --- a/components/autofill/core/browser/webdata/autocomplete_syncable_service.h
|
| +++ b/components/autofill/core/browser/webdata/autocomplete_syncable_service.h
|
| @@ -13,8 +13,8 @@
|
|
|
| #include "base/macros.h"
|
| #include "base/scoped_observer.h"
|
| +#include "base/sequence_checker.h"
|
| #include "base/supports_user_data.h"
|
| -#include "base/threading/non_thread_safe.h"
|
| #include "components/autofill/core/browser/webdata/autofill_change.h"
|
| #include "components/autofill/core/browser/webdata/autofill_entry.h"
|
| #include "components/autofill/core/browser/webdata/autofill_webdata_backend.h"
|
| @@ -49,8 +49,7 @@ class AutofillTable;
|
| class AutocompleteSyncableService
|
| : public base::SupportsUserData::Data,
|
| public syncer::SyncableService,
|
| - public AutofillWebDataServiceObserverOnDBThread,
|
| - public base::NonThreadSafe {
|
| + public AutofillWebDataServiceObserverOnDBThread {
|
| public:
|
| ~AutocompleteSyncableService() override;
|
|
|
| @@ -162,6 +161,8 @@ class AutocompleteSyncableService
|
|
|
| syncer::SyncableService::StartSyncFlare flare_;
|
|
|
| + SEQUENCE_CHECKER(sequence_checker_);
|
| +
|
| DISALLOW_COPY_AND_ASSIGN(AutocompleteSyncableService);
|
| };
|
|
|
|
|