OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_SESSIONS_SESSIONS_SYNC_MANAGER_H_ | 5 #ifndef COMPONENTS_SYNC_SESSIONS_SESSIONS_SYNC_MANAGER_H_ |
6 #define COMPONENTS_SYNC_SESSIONS_SESSIONS_SYNC_MANAGER_H_ | 6 #define COMPONENTS_SYNC_SESSIONS_SESSIONS_SYNC_MANAGER_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <set> | 9 #include <set> |
10 #include <string> | 10 #include <string> |
11 #include <vector> | 11 #include <vector> |
12 | 12 |
13 #include "base/basictypes.h" | 13 #include "base/basictypes.h" |
14 #include "base/callback_forward.h" | 14 #include "base/callback_forward.h" |
15 #include "base/gtest_prod_util.h" | 15 #include "base/gtest_prod_util.h" |
16 #include "base/memory/weak_ptr.h" | 16 #include "base/memory/weak_ptr.h" |
17 #include "base/time/time.h" | 17 #include "base/time/time.h" |
18 #include "components/sessions/core/session_id.h" | 18 #include "components/sessions/core/session_id.h" |
19 #include "components/sessions/core/session_types.h" | 19 #include "components/sessions/core/session_types.h" |
20 #include "components/sync_driver/device_info.h" | 20 #include "components/sync_driver/device_info.h" |
21 #include "components/sync_driver/glue/synced_session.h" | |
22 #include "components/sync_driver/open_tabs_ui_delegate.h" | |
23 #include "components/sync_driver/sync_prefs.h" | 21 #include "components/sync_driver/sync_prefs.h" |
24 #include "components/sync_driver/tab_node_pool.h" | |
25 #include "components/sync_sessions/favicon_cache.h" | 22 #include "components/sync_sessions/favicon_cache.h" |
26 #include "components/sync_sessions/local_session_event_router.h" | 23 #include "components/sync_sessions/local_session_event_router.h" |
| 24 #include "components/sync_sessions/open_tabs_ui_delegate.h" |
27 #include "components/sync_sessions/revisit/page_revisit_broadcaster.h" | 25 #include "components/sync_sessions/revisit/page_revisit_broadcaster.h" |
| 26 #include "components/sync_sessions/synced_session.h" |
28 #include "components/sync_sessions/synced_session_tracker.h" | 27 #include "components/sync_sessions/synced_session_tracker.h" |
| 28 #include "components/sync_sessions/tab_node_pool.h" |
29 #include "sync/api/syncable_service.h" | 29 #include "sync/api/syncable_service.h" |
30 | 30 |
31 namespace syncer { | 31 namespace syncer { |
32 class SyncErrorFactory; | 32 class SyncErrorFactory; |
33 } | 33 } |
34 | 34 |
35 namespace sync_driver { | 35 namespace sync_driver { |
36 class LocalDeviceInfoProvider; | 36 class LocalDeviceInfoProvider; |
37 class SyncPrefs; | 37 class SyncPrefs; |
38 } | 38 } |
(...skipping 317 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
356 | 356 |
357 // Callback to inform sync that a sync data refresh is requested. | 357 // Callback to inform sync that a sync data refresh is requested. |
358 base::Closure datatype_refresh_callback_; | 358 base::Closure datatype_refresh_callback_; |
359 | 359 |
360 DISALLOW_COPY_AND_ASSIGN(SessionsSyncManager); | 360 DISALLOW_COPY_AND_ASSIGN(SessionsSyncManager); |
361 }; | 361 }; |
362 | 362 |
363 } // namespace browser_sync | 363 } // namespace browser_sync |
364 | 364 |
365 #endif // COMPONENTS_SYNC_SESSIONS_SESSIONS_SYNC_MANAGER_H_ | 365 #endif // COMPONENTS_SYNC_SESSIONS_SESSIONS_SYNC_MANAGER_H_ |
OLD | NEW |