| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "components/sync/engine/passive_model_worker.h" | 5 #include "components/sync/engine/passive_model_worker.h" |
| 6 | 6 |
| 7 #include "base/message_loop/message_loop.h" | 7 #include "base/callback.h" |
| 8 | 8 |
| 9 namespace syncer { | 9 namespace syncer { |
| 10 | 10 |
| 11 PassiveModelWorker::PassiveModelWorker(WorkerLoopDestructionObserver* observer) | 11 PassiveModelWorker::PassiveModelWorker() = default; |
| 12 : ModelSafeWorker(observer) {} | |
| 13 | 12 |
| 14 PassiveModelWorker::~PassiveModelWorker() {} | 13 PassiveModelWorker::~PassiveModelWorker() {} |
| 15 | 14 |
| 16 void PassiveModelWorker::RegisterForLoopDestruction() { | |
| 17 SetWorkingLoopToCurrent(); | |
| 18 } | |
| 19 | |
| 20 SyncerError PassiveModelWorker::DoWorkAndWaitUntilDoneImpl( | 15 SyncerError PassiveModelWorker::DoWorkAndWaitUntilDoneImpl( |
| 21 const WorkCallback& work) { | 16 const WorkCallback& work) { |
| 22 // Simply do the work on the current thread. | 17 // Simply do the work on the current thread. |
| 23 return work.Run(); | 18 return work.Run(); |
| 24 } | 19 } |
| 25 | 20 |
| 26 ModelSafeGroup PassiveModelWorker::GetModelSafeGroup() { | 21 ModelSafeGroup PassiveModelWorker::GetModelSafeGroup() { |
| 27 return GROUP_PASSIVE; | 22 return GROUP_PASSIVE; |
| 28 } | 23 } |
| 29 | 24 |
| 30 } // namespace syncer | 25 } // namespace syncer |
| OLD | NEW |