Upstreaming browser/ui/uikit_ui_util from iOS.
[chromium-blink-merge.git] / sync / test / engine / fake_model_worker.h
blobbeb54004c3d7dc118a1aea0a77009a19d2594cae
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
3 // found in the LICENSE file.
5 #ifndef SYNC_TEST_ENGINE_FAKE_MODEL_WORKER_H_
6 #define SYNC_TEST_ENGINE_FAKE_MODEL_WORKER_H_
8 #include <vector>
10 #include "base/basictypes.h"
11 #include "base/compiler_specific.h"
12 #include "base/threading/non_thread_safe.h"
13 #include "sync/internal_api/public/engine/model_safe_worker.h"
14 #include "sync/internal_api/public/util/syncer_error.h"
16 namespace syncer {
18 // Fake implementation of ModelSafeWorker that does work on the
19 // current thread regardless of the group.
20 class FakeModelWorker : public ModelSafeWorker, public base::NonThreadSafe {
21 public:
22 explicit FakeModelWorker(ModelSafeGroup group);
24 // ModelSafeWorker implementation.
25 void RegisterForLoopDestruction() override;
26 ModelSafeGroup GetModelSafeGroup() override;
28 protected:
29 SyncerError DoWorkAndWaitUntilDoneImpl(const WorkCallback& work) override;
31 private:
32 ~FakeModelWorker() override;
34 const ModelSafeGroup group_;
36 DISALLOW_COPY_AND_ASSIGN(FakeModelWorker);
39 } // namespace syncer
41 #endif // SYNC_TEST_ENGINE_FAKE_MODEL_WORKER_H_