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 CHROME_BROWSER_SYNC_GLUE_SYNC_BACKEND_HOST_IMPL_H_ | 5 #ifndef COMPONENTS_SYNC_DRIVER_GLUE_SYNC_BACKEND_HOST_IMPL_H_ |
6 #define CHROME_BROWSER_SYNC_GLUE_SYNC_BACKEND_HOST_IMPL_H_ | 6 #define COMPONENTS_SYNC_DRIVER_GLUE_SYNC_BACKEND_HOST_IMPL_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
11 #include "base/callback.h" | 11 #include "base/callback.h" |
12 #include "base/compiler_specific.h" | 12 #include "base/compiler_specific.h" |
13 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
14 #include "base/memory/weak_ptr.h" | 14 #include "base/memory/weak_ptr.h" |
15 #include "base/threading/thread.h" | 15 #include "base/threading/thread.h" |
16 #include "chrome/browser/sync/glue/sync_backend_host.h" | |
17 #include "components/invalidation/public/invalidation_handler.h" | 16 #include "components/invalidation/public/invalidation_handler.h" |
18 #include "components/sync_driver/backend_data_type_configurer.h" | 17 #include "components/sync_driver/backend_data_type_configurer.h" |
| 18 #include "components/sync_driver/glue/sync_backend_host.h" |
19 #include "sync/internal_api/public/base/model_type.h" | 19 #include "sync/internal_api/public/base/model_type.h" |
20 #include "sync/internal_api/public/configure_reason.h" | 20 #include "sync/internal_api/public/configure_reason.h" |
21 #include "sync/internal_api/public/sessions/sync_session_snapshot.h" | 21 #include "sync/internal_api/public/sessions/sync_session_snapshot.h" |
22 #include "sync/internal_api/public/sessions/type_debug_info_observer.h" | 22 #include "sync/internal_api/public/sessions/type_debug_info_observer.h" |
23 #include "sync/internal_api/public/sync_manager.h" | 23 #include "sync/internal_api/public/sync_manager.h" |
24 #include "sync/internal_api/public/util/weak_handle.h" | 24 #include "sync/internal_api/public/util/weak_handle.h" |
25 #include "sync/protocol/encryption.pb.h" | 25 #include "sync/protocol/encryption.pb.h" |
26 #include "sync/protocol/sync_protocol_error.h" | 26 #include "sync/protocol/sync_protocol_error.h" |
27 #include "sync/util/extensions_activity.h" | 27 #include "sync/util/extensions_activity.h" |
28 | 28 |
(...skipping 339 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
368 invalidation::InvalidationService* invalidator_; | 368 invalidation::InvalidationService* invalidator_; |
369 bool invalidation_handler_registered_; | 369 bool invalidation_handler_registered_; |
370 | 370 |
371 base::WeakPtrFactory<SyncBackendHostImpl> weak_ptr_factory_; | 371 base::WeakPtrFactory<SyncBackendHostImpl> weak_ptr_factory_; |
372 | 372 |
373 DISALLOW_COPY_AND_ASSIGN(SyncBackendHostImpl); | 373 DISALLOW_COPY_AND_ASSIGN(SyncBackendHostImpl); |
374 }; | 374 }; |
375 | 375 |
376 } // namespace browser_sync | 376 } // namespace browser_sync |
377 | 377 |
378 #endif // CHROME_BROWSER_SYNC_GLUE_SYNC_BACKEND_HOST_IMPL_H_ | 378 #endif // COMPONENTS_SYNC_DRIVER_GLUE_SYNC_BACKEND_HOST_IMPL_H_ |
OLD | NEW |