Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(330)

Side by Side Diff: components/sync/engine/passive_model_worker.cc

Issue 2820623002: Revert of [Sync] Refactor ModelSafeWorker::DoWorkAndWaitUntilDone() to avoid code duplication. (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « components/sync/engine/passive_model_worker.h ('k') | components/sync/engine/ui_model_worker.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 "base/callback.h"
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 SyncerError PassiveModelWorker::DoWorkAndWaitUntilDoneImpl(
16 std::move(work).Run(); 16 const WorkCallback& work) {
17 // Simply do the work on the current thread.
18 return work.Run();
17 } 19 }
18 20
19 ModelSafeGroup PassiveModelWorker::GetModelSafeGroup() { 21 ModelSafeGroup PassiveModelWorker::GetModelSafeGroup() {
20 return GROUP_PASSIVE; 22 return GROUP_PASSIVE;
21 } 23 }
22 24
23 bool PassiveModelWorker::IsOnModelThread() { 25 bool PassiveModelWorker::IsOnModelThread() {
24 // Passive types are checked by SyncBackendRegistrar. 26 // Passive types are checked by SyncBackendRegistrar.
25 NOTREACHED(); 27 NOTREACHED();
26 return false; 28 return false;
27 } 29 }
28 30
29 } // namespace syncer 31 } // namespace syncer
OLDNEW
« no previous file with comments | « components/sync/engine/passive_model_worker.h ('k') | components/sync/engine/ui_model_worker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698