| 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 <utility> | 7 #include <utility> |
| 8 | 8 |
| 9 namespace syncer { | 9 namespace syncer { |
| 10 | 10 |
| 11 PassiveModelWorker::PassiveModelWorker() = default; | 11 PassiveModelWorker::PassiveModelWorker() = default; |
| 12 | 12 |
| 13 PassiveModelWorker::~PassiveModelWorker() {} | 13 PassiveModelWorker::~PassiveModelWorker() {} |
| 14 | 14 |
| 15 void PassiveModelWorker::ScheduleWork(base::OnceClosure work) { | 15 void PassiveModelWorker::ScheduleWork(base::OnceClosure work) { |
| 16 std::move(work).Run(); | 16 std::move(work).Run(); |
| 17 } | 17 } |
| 18 | 18 |
| 19 ModelSafeGroup PassiveModelWorker::GetModelSafeGroup() { | 19 ModelSafeGroup PassiveModelWorker::GetModelSafeGroup() { |
| 20 return GROUP_PASSIVE; | 20 return GROUP_PASSIVE; |
| 21 } | 21 } |
| 22 | 22 |
| 23 bool PassiveModelWorker::IsOnModelThread() { | 23 bool PassiveModelWorker::IsOnModelSequence() { |
| 24 // Passive types are checked by SyncBackendRegistrar. | 24 // Passive types are checked by SyncBackendRegistrar. |
| 25 NOTREACHED(); | 25 NOTREACHED(); |
| 26 return false; | 26 return false; |
| 27 } | 27 } |
| 28 | 28 |
| 29 } // namespace syncer | 29 } // namespace syncer |
| OLD | NEW |