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 CHROME_BROWSER_SYNC_GLUE_SYNC_BACKEND_HOST_IMPL_H_ |
6 #define CHROME_BROWSER_SYNC_GLUE_SYNC_BACKEND_HOST_IMPL_H_ | 6 #define CHROME_BROWSER_SYNC_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/extensions_activity_monitor.h" | 16 #include "chrome/browser/sync/glue/extensions_activity_monitor.h" |
17 #include "chrome/browser/sync/glue/sync_backend_host.h" | 17 #include "chrome/browser/sync/glue/sync_backend_host.h" |
18 #include "components/invalidation/invalidation_handler.h" | 18 #include "components/invalidation/public/invalidation_handler.h" |
19 #include "components/sync_driver/backend_data_type_configurer.h" | 19 #include "components/sync_driver/backend_data_type_configurer.h" |
20 #include "content/public/browser/notification_observer.h" | 20 #include "content/public/browser/notification_observer.h" |
21 #include "content/public/browser/notification_registrar.h" | 21 #include "content/public/browser/notification_registrar.h" |
22 #include "sync/internal_api/public/base/model_type.h" | 22 #include "sync/internal_api/public/base/model_type.h" |
23 #include "sync/internal_api/public/configure_reason.h" | 23 #include "sync/internal_api/public/configure_reason.h" |
24 #include "sync/internal_api/public/sessions/sync_session_snapshot.h" | 24 #include "sync/internal_api/public/sessions/sync_session_snapshot.h" |
25 #include "sync/internal_api/public/sessions/type_debug_info_observer.h" | 25 #include "sync/internal_api/public/sessions/type_debug_info_observer.h" |
26 #include "sync/internal_api/public/sync_manager.h" | 26 #include "sync/internal_api/public/sync_manager.h" |
27 #include "sync/internal_api/public/util/unrecoverable_error_handler.h" | 27 #include "sync/internal_api/public/util/unrecoverable_error_handler.h" |
28 #include "sync/internal_api/public/util/weak_handle.h" | 28 #include "sync/internal_api/public/util/weak_handle.h" |
(...skipping 328 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
357 bool invalidation_handler_registered_; | 357 bool invalidation_handler_registered_; |
358 | 358 |
359 base::WeakPtrFactory<SyncBackendHostImpl> weak_ptr_factory_; | 359 base::WeakPtrFactory<SyncBackendHostImpl> weak_ptr_factory_; |
360 | 360 |
361 DISALLOW_COPY_AND_ASSIGN(SyncBackendHostImpl); | 361 DISALLOW_COPY_AND_ASSIGN(SyncBackendHostImpl); |
362 }; | 362 }; |
363 | 363 |
364 } // namespace browser_sync | 364 } // namespace browser_sync |
365 | 365 |
366 #endif // CHROME_BROWSER_SYNC_GLUE_SYNC_BACKEND_HOST_IMPL_H_ | 366 #endif // CHROME_BROWSER_SYNC_GLUE_SYNC_BACKEND_HOST_IMPL_H_ |
OLD | NEW |