| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_DATA_TYPE_MANAGER_IMPL_H__ | 5 #ifndef COMPONENTS_SYNC_DRIVER_DATA_TYPE_MANAGER_IMPL_H__ |
| 6 #define COMPONENTS_SYNC_DRIVER_DATA_TYPE_MANAGER_IMPL_H__ | 6 #define COMPONENTS_SYNC_DRIVER_DATA_TYPE_MANAGER_IMPL_H__ |
| 7 | 7 |
| 8 #include "components/sync_driver/data_type_manager.h" | 8 #include "components/sync_driver/data_type_manager.h" |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| 11 #include <queue> | 11 #include <queue> |
| 12 #include <vector> | 12 #include <vector> |
| 13 | 13 |
| 14 #include "base/basictypes.h" | |
| 15 #include "base/callback_forward.h" | 14 #include "base/callback_forward.h" |
| 16 #include "base/compiler_specific.h" | 15 #include "base/compiler_specific.h" |
| 16 #include "base/macros.h" |
| 17 #include "base/memory/weak_ptr.h" | 17 #include "base/memory/weak_ptr.h" |
| 18 #include "base/time/time.h" | 18 #include "base/time/time.h" |
| 19 #include "components/sync_driver/backend_data_type_configurer.h" | 19 #include "components/sync_driver/backend_data_type_configurer.h" |
| 20 #include "components/sync_driver/model_association_manager.h" | 20 #include "components/sync_driver/model_association_manager.h" |
| 21 | 21 |
| 22 namespace syncer { | 22 namespace syncer { |
| 23 struct DataTypeConfigurationStats; | 23 struct DataTypeConfigurationStats; |
| 24 class DataTypeDebugInfoListener; | 24 class DataTypeDebugInfoListener; |
| 25 template <typename T> class WeakHandle; | 25 template <typename T> class WeakHandle; |
| 26 } | 26 } |
| (...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 225 bool catch_up_in_progress_; | 225 bool catch_up_in_progress_; |
| 226 | 226 |
| 227 base::WeakPtrFactory<DataTypeManagerImpl> weak_ptr_factory_; | 227 base::WeakPtrFactory<DataTypeManagerImpl> weak_ptr_factory_; |
| 228 | 228 |
| 229 DISALLOW_COPY_AND_ASSIGN(DataTypeManagerImpl); | 229 DISALLOW_COPY_AND_ASSIGN(DataTypeManagerImpl); |
| 230 }; | 230 }; |
| 231 | 231 |
| 232 } // namespace sync_driver | 232 } // namespace sync_driver |
| 233 | 233 |
| 234 #endif // COMPONENTS_SYNC_DRIVER_DATA_TYPE_MANAGER_IMPL_H__ | 234 #endif // COMPONENTS_SYNC_DRIVER_DATA_TYPE_MANAGER_IMPL_H__ |
| OLD | NEW |