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

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

Issue 2942773002: Task Scheduler API migration: change BrowserThreadModelWorker to SequencedModelWorker (Closed)
Patch Set: Updated more comments to reflect thread -> sequence migration. Created 3 years, 6 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
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 <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
OLDNEW
« no previous file with comments | « components/sync/engine/passive_model_worker.h ('k') | components/sync/engine/sequenced_model_worker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698