| 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 SYNC_INTERNAL_API_SYNC_MANAGER_H_ | 5 #ifndef SYNC_INTERNAL_API_SYNC_MANAGER_H_ |
| 6 #define SYNC_INTERNAL_API_SYNC_MANAGER_H_ | 6 #define SYNC_INTERNAL_API_SYNC_MANAGER_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "net/base/network_change_notifier.h" | 11 #include "net/base/network_change_notifier.h" |
| 12 #include "sync/base/sync_export.h" | 12 #include "sync/base/sync_export.h" |
| 13 #include "sync/engine/all_status.h" | 13 #include "sync/engine/all_status.h" |
| 14 #include "sync/engine/net/server_connection_manager.h" | 14 #include "sync/engine/net/server_connection_manager.h" |
| 15 #include "sync/engine/sync_engine_event_listener.h" | 15 #include "sync/engine/sync_engine_event_listener.h" |
| 16 #include "sync/internal_api/change_reorder_buffer.h" | 16 #include "sync/internal_api/change_reorder_buffer.h" |
| 17 #include "sync/internal_api/debug_info_event_listener.h" | 17 #include "sync/internal_api/debug_info_event_listener.h" |
| 18 #include "sync/internal_api/js_mutation_event_observer.h" | 18 #include "sync/internal_api/js_mutation_event_observer.h" |
| 19 #include "sync/internal_api/js_sync_encryption_handler_observer.h" | 19 #include "sync/internal_api/js_sync_encryption_handler_observer.h" |
| 20 #include "sync/internal_api/js_sync_manager_observer.h" | 20 #include "sync/internal_api/js_sync_manager_observer.h" |
| 21 #include "sync/internal_api/protocol_event_buffer.h" | 21 #include "sync/internal_api/protocol_event_buffer.h" |
| 22 #include "sync/internal_api/public/base/invalidator_state.h" | |
| 23 #include "sync/internal_api/public/sync_core_proxy.h" | 22 #include "sync/internal_api/public/sync_core_proxy.h" |
| 24 #include "sync/internal_api/public/sync_manager.h" | 23 #include "sync/internal_api/public/sync_manager.h" |
| 25 #include "sync/internal_api/public/user_share.h" | 24 #include "sync/internal_api/public/user_share.h" |
| 26 #include "sync/internal_api/sync_encryption_handler_impl.h" | 25 #include "sync/internal_api/sync_encryption_handler_impl.h" |
| 27 #include "sync/js/js_backend.h" | 26 #include "sync/js/js_backend.h" |
| 28 #include "sync/notifier/invalidation_handler.h" | 27 #include "sync/notifier/invalidation_handler.h" |
| 28 #include "sync/notifier/invalidator_state.h" |
| 29 #include "sync/syncable/directory_change_delegate.h" | 29 #include "sync/syncable/directory_change_delegate.h" |
| 30 #include "sync/util/cryptographer.h" | 30 #include "sync/util/cryptographer.h" |
| 31 #include "sync/util/time.h" | 31 #include "sync/util/time.h" |
| 32 | 32 |
| 33 namespace syncer { | 33 namespace syncer { |
| 34 | 34 |
| 35 class ModelTypeRegistry; | 35 class ModelTypeRegistry; |
| 36 class SyncAPIServerConnectionManager; | 36 class SyncAPIServerConnectionManager; |
| 37 class SyncCore; | 37 class SyncCore; |
| 38 class TypeDebugInfoObserver; | 38 class TypeDebugInfoObserver; |
| (...skipping 325 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 364 scoped_ptr<SyncEncryptionHandlerImpl> sync_encryption_handler_; | 364 scoped_ptr<SyncEncryptionHandlerImpl> sync_encryption_handler_; |
| 365 | 365 |
| 366 base::WeakPtrFactory<SyncManagerImpl> weak_ptr_factory_; | 366 base::WeakPtrFactory<SyncManagerImpl> weak_ptr_factory_; |
| 367 | 367 |
| 368 DISALLOW_COPY_AND_ASSIGN(SyncManagerImpl); | 368 DISALLOW_COPY_AND_ASSIGN(SyncManagerImpl); |
| 369 }; | 369 }; |
| 370 | 370 |
| 371 } // namespace syncer | 371 } // namespace syncer |
| 372 | 372 |
| 373 #endif // SYNC_INTERNAL_API_SYNC_MANAGER_H_ | 373 #endif // SYNC_INTERNAL_API_SYNC_MANAGER_H_ |
| OLD | NEW |