OLD | NEW |
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_INTERNAL_API_PUBLIC_ENGINE_PASSIVE_MODEL_WORKER_H_ | 5 #ifndef SYNC_INTERNAL_API_PUBLIC_ENGINE_PASSIVE_MODEL_WORKER_H_ |
6 #define SYNC_INTERNAL_API_PUBLIC_ENGINE_PASSIVE_MODEL_WORKER_H_ | 6 #define SYNC_INTERNAL_API_PUBLIC_ENGINE_PASSIVE_MODEL_WORKER_H_ |
7 #pragma once | |
8 | 7 |
9 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
10 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
11 #include "sync/internal_api/public/engine/model_safe_worker.h" | 10 #include "sync/internal_api/public/engine/model_safe_worker.h" |
12 #include "sync/internal_api/public/util/syncer_error.h" | 11 #include "sync/internal_api/public/util/syncer_error.h" |
13 | 12 |
14 class MessageLoop; | 13 class MessageLoop; |
15 | 14 |
16 namespace syncer { | 15 namespace syncer { |
17 | 16 |
(...skipping 13 matching lines...) Expand all Loading... |
31 virtual ~PassiveModelWorker(); | 30 virtual ~PassiveModelWorker(); |
32 | 31 |
33 const MessageLoop* const sync_loop_; | 32 const MessageLoop* const sync_loop_; |
34 | 33 |
35 DISALLOW_COPY_AND_ASSIGN(PassiveModelWorker); | 34 DISALLOW_COPY_AND_ASSIGN(PassiveModelWorker); |
36 }; | 35 }; |
37 | 36 |
38 } // namespace syncer | 37 } // namespace syncer |
39 | 38 |
40 #endif // SYNC_INTERNAL_API_PUBLIC_ENGINE_PASSIVE_MODEL_WORKER_H_ | 39 #endif // SYNC_INTERNAL_API_PUBLIC_ENGINE_PASSIVE_MODEL_WORKER_H_ |
OLD | NEW |