| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_HOST_IMPL_H_ | 5 #ifndef COMPONENTS_SYNC_DRIVER_GLUE_SYNC_BACKEND_HOST_IMPL_H_ |
| 6 #define COMPONENTS_SYNC_DRIVER_GLUE_SYNC_BACKEND_HOST_IMPL_H_ | 6 #define COMPONENTS_SYNC_DRIVER_GLUE_SYNC_BACKEND_HOST_IMPL_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 #include "components/sync/driver/glue/sync_backend_host.h" | 27 #include "components/sync/driver/glue/sync_backend_host.h" |
| 28 #include "components/sync/engine/configure_reason.h" | 28 #include "components/sync/engine/configure_reason.h" |
| 29 #include "components/sync/engine/cycle/sync_cycle_snapshot.h" | 29 #include "components/sync/engine/cycle/sync_cycle_snapshot.h" |
| 30 #include "components/sync/engine/cycle/type_debug_info_observer.h" | 30 #include "components/sync/engine/cycle/type_debug_info_observer.h" |
| 31 #include "components/sync/engine/sync_manager.h" | 31 #include "components/sync/engine/sync_manager.h" |
| 32 #include "components/sync/protocol/encryption.pb.h" | 32 #include "components/sync/protocol/encryption.pb.h" |
| 33 #include "components/sync/protocol/sync_protocol_error.h" | 33 #include "components/sync/protocol/sync_protocol_error.h" |
| 34 | 34 |
| 35 class GURL; | 35 class GURL; |
| 36 | 36 |
| 37 namespace base { | |
| 38 class MessageLoop; | |
| 39 } // base | |
| 40 | |
| 41 namespace invalidation { | 37 namespace invalidation { |
| 42 class InvalidationService; | 38 class InvalidationService; |
| 43 } // namespace invalidation | 39 } // namespace invalidation |
| 44 | 40 |
| 45 namespace syncer { | 41 namespace syncer { |
| 46 | 42 |
| 47 class ChangeProcessor; | 43 class ChangeProcessor; |
| 48 class SyncBackendHostCore; | 44 class SyncBackendHostCore; |
| 49 class SyncBackendRegistrar; | 45 class SyncBackendRegistrar; |
| 50 class SyncClient; | 46 class SyncClient; |
| (...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 352 bool invalidation_handler_registered_; | 348 bool invalidation_handler_registered_; |
| 353 | 349 |
| 354 base::WeakPtrFactory<SyncBackendHostImpl> weak_ptr_factory_; | 350 base::WeakPtrFactory<SyncBackendHostImpl> weak_ptr_factory_; |
| 355 | 351 |
| 356 DISALLOW_COPY_AND_ASSIGN(SyncBackendHostImpl); | 352 DISALLOW_COPY_AND_ASSIGN(SyncBackendHostImpl); |
| 357 }; | 353 }; |
| 358 | 354 |
| 359 } // namespace syncer | 355 } // namespace syncer |
| 360 | 356 |
| 361 #endif // COMPONENTS_SYNC_DRIVER_GLUE_SYNC_BACKEND_HOST_IMPL_H_ | 357 #endif // COMPONENTS_SYNC_DRIVER_GLUE_SYNC_BACKEND_HOST_IMPL_H_ |
| OLD | NEW |