| Index: sync/internal_api/public/engine/model_safe_worker.h
|
| diff --git a/sync/internal_api/public/engine/model_safe_worker.h b/sync/internal_api/public/engine/model_safe_worker.h
|
| index df5bba9b7b10109863c29c281aeaf8575e0f67b5..ad84d4925cffae2f49fcaacf4c97e3eb7084c78a 100644
|
| --- a/sync/internal_api/public/engine/model_safe_worker.h
|
| +++ b/sync/internal_api/public/engine/model_safe_worker.h
|
| @@ -89,13 +89,13 @@ class SYNC_EXPORT ModelSafeWorker
|
| virtual ModelSafeGroup GetModelSafeGroup() = 0;
|
|
|
| // MessageLoop::DestructionObserver implementation.
|
| - virtual void WillDestroyCurrentMessageLoop() override;
|
| + void WillDestroyCurrentMessageLoop() override;
|
|
|
| protected:
|
| friend class base::RefCountedThreadSafe<ModelSafeWorker>;
|
|
|
| explicit ModelSafeWorker(WorkerLoopDestructionObserver* observer);
|
| - virtual ~ModelSafeWorker();
|
| + ~ModelSafeWorker() override;
|
|
|
| // Any time the Syncer performs model modifications (e.g employing a
|
| // WriteTransaction), it should be done by this method to ensure it is done
|
|
|