| 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_CORE_IMPL_SYNC_MANAGER_IMPL_H_ | 5 #ifndef COMPONENTS_SYNC_ENGINE_IMPL_SYNC_MANAGER_IMPL_H_ |
| 6 #define COMPONENTS_SYNC_CORE_IMPL_SYNC_MANAGER_IMPL_H_ | 6 #define COMPONENTS_SYNC_ENGINE_IMPL_SYNC_MANAGER_IMPL_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/gtest_prod_util.h" | 15 #include "base/gtest_prod_util.h" |
| 16 #include "base/macros.h" | 16 #include "base/macros.h" |
| 17 #include "components/sync/base/cryptographer.h" | 17 #include "components/sync/base/cryptographer.h" |
| 18 #include "components/sync/base/time.h" | 18 #include "components/sync/base/time.h" |
| 19 #include "components/sync/core/sync_manager.h" | 19 #include "components/sync/engine/sync_manager.h" |
| 20 #include "components/sync/core_impl/debug_info_event_listener.h" | |
| 21 #include "components/sync/core_impl/js_mutation_event_observer.h" | |
| 22 #include "components/sync/core_impl/js_sync_encryption_handler_observer.h" | |
| 23 #include "components/sync/core_impl/js_sync_manager_observer.h" | |
| 24 #include "components/sync/core_impl/protocol_event_buffer.h" | |
| 25 #include "components/sync/core_impl/sync_encryption_handler_impl.h" | |
| 26 #include "components/sync/engine_impl/all_status.h" | 20 #include "components/sync/engine_impl/all_status.h" |
| 21 #include "components/sync/engine_impl/debug_info_event_listener.h" |
| 22 #include "components/sync/engine_impl/events/protocol_event_buffer.h" |
| 23 #include "components/sync/engine_impl/js_mutation_event_observer.h" |
| 24 #include "components/sync/engine_impl/js_sync_encryption_handler_observer.h" |
| 25 #include "components/sync/engine_impl/js_sync_manager_observer.h" |
| 27 #include "components/sync/engine_impl/net/server_connection_manager.h" | 26 #include "components/sync/engine_impl/net/server_connection_manager.h" |
| 28 #include "components/sync/engine_impl/nudge_handler.h" | 27 #include "components/sync/engine_impl/nudge_handler.h" |
| 28 #include "components/sync/engine_impl/sync_encryption_handler_impl.h" |
| 29 #include "components/sync/engine_impl/sync_engine_event_listener.h" | 29 #include "components/sync/engine_impl/sync_engine_event_listener.h" |
| 30 #include "components/sync/js/js_backend.h" | 30 #include "components/sync/js/js_backend.h" |
| 31 #include "components/sync/syncable/change_reorder_buffer.h" | 31 #include "components/sync/syncable/change_reorder_buffer.h" |
| 32 #include "components/sync/syncable/directory_change_delegate.h" | 32 #include "components/sync/syncable/directory_change_delegate.h" |
| 33 #include "components/sync/syncable/user_share.h" | 33 #include "components/sync/syncable/user_share.h" |
| 34 #include "net/base/network_change_notifier.h" | 34 #include "net/base/network_change_notifier.h" |
| 35 | 35 |
| 36 class GURL; | 36 class GURL; |
| 37 | 37 |
| 38 namespace syncer { | 38 namespace syncer { |
| (...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 333 // with the cryptographer. | 333 // with the cryptographer. |
| 334 std::unique_ptr<SyncEncryptionHandlerImpl> sync_encryption_handler_; | 334 std::unique_ptr<SyncEncryptionHandlerImpl> sync_encryption_handler_; |
| 335 | 335 |
| 336 base::WeakPtrFactory<SyncManagerImpl> weak_ptr_factory_; | 336 base::WeakPtrFactory<SyncManagerImpl> weak_ptr_factory_; |
| 337 | 337 |
| 338 DISALLOW_COPY_AND_ASSIGN(SyncManagerImpl); | 338 DISALLOW_COPY_AND_ASSIGN(SyncManagerImpl); |
| 339 }; | 339 }; |
| 340 | 340 |
| 341 } // namespace syncer | 341 } // namespace syncer |
| 342 | 342 |
| 343 #endif // COMPONENTS_SYNC_CORE_IMPL_SYNC_MANAGER_IMPL_H_ | 343 #endif // COMPONENTS_SYNC_ENGINE_IMPL_SYNC_MANAGER_IMPL_H_ |
| OLD | NEW |