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

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

Issue 2489433002: [Sync] Move thread checking into the ModelSafeWorker interface. (Closed)
Patch Set: Fix iOS hopefully. Created 4 years, 1 month 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 "base/callback.h" 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 SyncerError PassiveModelWorker::DoWorkAndWaitUntilDoneImpl( 15 SyncerError PassiveModelWorker::DoWorkAndWaitUntilDoneImpl(
16 const WorkCallback& work) { 16 const WorkCallback& work) {
17 // Simply do the work on the current thread. 17 // Simply do the work on the current thread.
18 return work.Run(); 18 return work.Run();
19 } 19 }
20 20
21 ModelSafeGroup PassiveModelWorker::GetModelSafeGroup() { 21 ModelSafeGroup PassiveModelWorker::GetModelSafeGroup() {
22 return GROUP_PASSIVE; 22 return GROUP_PASSIVE;
23 } 23 }
24 24
25 bool PassiveModelWorker::IsOnModelThread() {
26 NOTREACHED();
Nicolas Zea 2016/11/08 18:31:04 nit: maybe add a comment here about why this is in
maxbogue 2016/11/08 18:43:23 Done.
27 return false;
28 }
29
25 } // namespace syncer 30 } // namespace syncer
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698