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

Side by Side Diff: components/sync/test/engine/fake_model_worker.h

Issue 2130453004: [Sync] Move //sync to //components/sync. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 years, 4 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 #ifndef SYNC_TEST_ENGINE_FAKE_MODEL_WORKER_H_ 5 #ifndef COMPONENTS_SYNC_TEST_ENGINE_FAKE_MODEL_WORKER_H_
6 #define SYNC_TEST_ENGINE_FAKE_MODEL_WORKER_H_ 6 #define COMPONENTS_SYNC_TEST_ENGINE_FAKE_MODEL_WORKER_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
11 #include "base/macros.h" 11 #include "base/macros.h"
12 #include "base/threading/non_thread_safe.h" 12 #include "base/threading/non_thread_safe.h"
13 #include "sync/internal_api/public/engine/model_safe_worker.h" 13 #include "components/sync/base/syncer_error.h"
14 #include "sync/internal_api/public/util/syncer_error.h" 14 #include "components/sync/engine/model_safe_worker.h"
15 15
16 namespace syncer { 16 namespace syncer {
17 17
18 // Fake implementation of ModelSafeWorker that does work on the 18 // Fake implementation of ModelSafeWorker that does work on the
19 // current thread regardless of the group. 19 // current thread regardless of the group.
20 class FakeModelWorker : public ModelSafeWorker, public base::NonThreadSafe { 20 class FakeModelWorker : public ModelSafeWorker, public base::NonThreadSafe {
21 public: 21 public:
22 explicit FakeModelWorker(ModelSafeGroup group); 22 explicit FakeModelWorker(ModelSafeGroup group);
23 23
24 // ModelSafeWorker implementation. 24 // ModelSafeWorker implementation.
25 void RegisterForLoopDestruction() override; 25 void RegisterForLoopDestruction() override;
26 ModelSafeGroup GetModelSafeGroup() override; 26 ModelSafeGroup GetModelSafeGroup() override;
27 27
28 protected: 28 protected:
29 SyncerError DoWorkAndWaitUntilDoneImpl(const WorkCallback& work) override; 29 SyncerError DoWorkAndWaitUntilDoneImpl(const WorkCallback& work) override;
30 30
31 private: 31 private:
32 ~FakeModelWorker() override; 32 ~FakeModelWorker() override;
33 33
34 const ModelSafeGroup group_; 34 const ModelSafeGroup group_;
35 35
36 DISALLOW_COPY_AND_ASSIGN(FakeModelWorker); 36 DISALLOW_COPY_AND_ASSIGN(FakeModelWorker);
37 }; 37 };
38 38
39 } // namespace syncer 39 } // namespace syncer
40 40
41 #endif // SYNC_TEST_ENGINE_FAKE_MODEL_WORKER_H_ 41 #endif // COMPONENTS_SYNC_TEST_ENGINE_FAKE_MODEL_WORKER_H_
42
OLDNEW
« no previous file with comments | « components/sync/test/directory_backing_store_corruption_testing.cc ('k') | components/sync/test/engine/fake_model_worker.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698