| 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_IMPL_H_ |
| 6 #define SYNC_INTERNAL_API_SYNC_MANAGER_H_ | 6 #define SYNC_INTERNAL_API_SYNC_MANAGER_IMPL_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/gtest_prod_util.h" |
| 11 #include "net/base/network_change_notifier.h" | 12 #include "net/base/network_change_notifier.h" |
| 12 #include "sync/base/sync_export.h" | 13 #include "sync/base/sync_export.h" |
| 13 #include "sync/engine/all_status.h" | 14 #include "sync/engine/all_status.h" |
| 14 #include "sync/engine/net/server_connection_manager.h" | 15 #include "sync/engine/net/server_connection_manager.h" |
| 15 #include "sync/engine/nudge_handler.h" | 16 #include "sync/engine/nudge_handler.h" |
| 16 #include "sync/engine/sync_engine_event_listener.h" | 17 #include "sync/engine/sync_engine_event_listener.h" |
| 17 #include "sync/internal_api/change_reorder_buffer.h" | 18 #include "sync/internal_api/change_reorder_buffer.h" |
| 18 #include "sync/internal_api/debug_info_event_listener.h" | 19 #include "sync/internal_api/debug_info_event_listener.h" |
| 19 #include "sync/internal_api/js_mutation_event_observer.h" | 20 #include "sync/internal_api/js_mutation_event_observer.h" |
| 20 #include "sync/internal_api/js_sync_encryption_handler_observer.h" | 21 #include "sync/internal_api/js_sync_encryption_handler_observer.h" |
| (...skipping 321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 342 // with the cryptographer. | 343 // with the cryptographer. |
| 343 scoped_ptr<SyncEncryptionHandlerImpl> sync_encryption_handler_; | 344 scoped_ptr<SyncEncryptionHandlerImpl> sync_encryption_handler_; |
| 344 | 345 |
| 345 base::WeakPtrFactory<SyncManagerImpl> weak_ptr_factory_; | 346 base::WeakPtrFactory<SyncManagerImpl> weak_ptr_factory_; |
| 346 | 347 |
| 347 DISALLOW_COPY_AND_ASSIGN(SyncManagerImpl); | 348 DISALLOW_COPY_AND_ASSIGN(SyncManagerImpl); |
| 348 }; | 349 }; |
| 349 | 350 |
| 350 } // namespace syncer | 351 } // namespace syncer |
| 351 | 352 |
| 352 #endif // SYNC_INTERNAL_API_SYNC_MANAGER_H_ | 353 #endif // SYNC_INTERNAL_API_SYNC_MANAGER_IMPL_H_ |
| OLD | NEW |