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

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

Issue 2471183003: Do not observe MessageLoop destruction from ModelSafeWorker. (Closed)
Patch Set: CR maxbogue #23 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/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
OLDNEW
« no previous file with comments | « components/sync/engine/passive_model_worker.h ('k') | components/sync/test/engine/fake_model_worker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698