| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 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 COMPONENTS_SYNC_DRIVER_GLUE_SYNC_BACKEND_REGISTRAR_H_ | 5 #ifndef COMPONENTS_SYNC_DRIVER_GLUE_SYNC_BACKEND_REGISTRAR_H_ |
| 6 #define COMPONENTS_SYNC_DRIVER_GLUE_SYNC_BACKEND_REGISTRAR_H_ | 6 #define COMPONENTS_SYNC_DRIVER_GLUE_SYNC_BACKEND_REGISTRAR_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| 11 #include <memory> | 11 #include <memory> |
| 12 #include <string> | 12 #include <string> |
| 13 #include <vector> | 13 #include <vector> |
| 14 | 14 |
| 15 #include "base/compiler_specific.h" | 15 #include "base/compiler_specific.h" |
| 16 #include "base/macros.h" | 16 #include "base/macros.h" |
| 17 #include "base/memory/ref_counted.h" | 17 #include "base/memory/ref_counted.h" |
| 18 #include "base/synchronization/lock.h" | 18 #include "base/synchronization/lock.h" |
| 19 #include "base/threading/thread.h" | 19 #include "base/threading/thread.h" |
| 20 #include "sync/internal_api/public/base/model_type.h" | 20 #include "components/sync/base/model_type.h" |
| 21 #include "sync/internal_api/public/engine/model_safe_worker.h" | 21 #include "components/sync/core/sync_manager.h" |
| 22 #include "sync/internal_api/public/sync_manager.h" | 22 #include "components/sync/engine/model_safe_worker.h" |
| 23 | 23 |
| 24 class Profile; | 24 class Profile; |
| 25 | 25 |
| 26 namespace base { | 26 namespace base { |
| 27 class MessageLoop; | 27 class MessageLoop; |
| 28 } | 28 } |
| 29 | 29 |
| 30 namespace syncer { | 30 namespace syncer { |
| 31 struct UserShare; | 31 struct UserShare; |
| 32 } // namespace syncer | 32 } // namespace syncer |
| (...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 230 // Set of types with non-blocking implementation (as opposed to directory | 230 // Set of types with non-blocking implementation (as opposed to directory |
| 231 // based). | 231 // based). |
| 232 syncer::ModelTypeSet non_blocking_types_; | 232 syncer::ModelTypeSet non_blocking_types_; |
| 233 | 233 |
| 234 DISALLOW_COPY_AND_ASSIGN(SyncBackendRegistrar); | 234 DISALLOW_COPY_AND_ASSIGN(SyncBackendRegistrar); |
| 235 }; | 235 }; |
| 236 | 236 |
| 237 } // namespace browser_sync | 237 } // namespace browser_sync |
| 238 | 238 |
| 239 #endif // COMPONENTS_SYNC_DRIVER_GLUE_SYNC_BACKEND_REGISTRAR_H_ | 239 #endif // COMPONENTS_SYNC_DRIVER_GLUE_SYNC_BACKEND_REGISTRAR_H_ |
| OLD | NEW |