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 #include "components/sync_sessions/sessions_sync_manager.h" | 5 #include "components/sync_sessions/sessions_sync_manager.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 #include <utility> | 8 #include <utility> |
9 | 9 |
10 #include "base/metrics/field_trial.h" | 10 #include "base/metrics/field_trial.h" |
11 #include "base/metrics/histogram_macros.h" | 11 #include "base/metrics/histogram_macros.h" |
12 #include "build/build_config.h" | 12 #include "build/build_config.h" |
| 13 #include "components/sync/api/sync_error.h" |
| 14 #include "components/sync/api/sync_error_factory.h" |
| 15 #include "components/sync/api/sync_merge_result.h" |
| 16 #include "components/sync/api/time.h" |
| 17 #include "components/sync/syncable/syncable_util.h" |
13 #include "components/sync_driver/local_device_info_provider.h" | 18 #include "components/sync_driver/local_device_info_provider.h" |
14 #include "components/sync_sessions/sync_sessions_client.h" | 19 #include "components/sync_sessions/sync_sessions_client.h" |
15 #include "components/sync_sessions/synced_tab_delegate.h" | 20 #include "components/sync_sessions/synced_tab_delegate.h" |
16 #include "components/sync_sessions/synced_window_delegate.h" | 21 #include "components/sync_sessions/synced_window_delegate.h" |
17 #include "components/sync_sessions/synced_window_delegates_getter.h" | 22 #include "components/sync_sessions/synced_window_delegates_getter.h" |
18 #include "components/variations/variations_associated_data.h" | 23 #include "components/variations/variations_associated_data.h" |
19 #include "sync/api/sync_error.h" | |
20 #include "sync/api/sync_error_factory.h" | |
21 #include "sync/api/sync_merge_result.h" | |
22 #include "sync/api/time.h" | |
23 #include "sync/syncable/syncable_util.h" | |
24 | 24 |
25 using sessions::SerializedNavigationEntry; | 25 using sessions::SerializedNavigationEntry; |
26 using sync_driver::DeviceInfo; | 26 using sync_driver::DeviceInfo; |
27 using sync_driver::LocalDeviceInfoProvider; | 27 using sync_driver::LocalDeviceInfoProvider; |
28 using syncer::SyncChange; | 28 using syncer::SyncChange; |
29 using syncer::SyncData; | 29 using syncer::SyncData; |
30 | 30 |
31 namespace browser_sync { | 31 namespace browser_sync { |
32 | 32 |
33 namespace { | 33 namespace { |
(...skipping 1063 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1097 } | 1097 } |
1098 | 1098 |
1099 // static | 1099 // static |
1100 std::string SessionsSyncManager::TagHashFromSpecifics( | 1100 std::string SessionsSyncManager::TagHashFromSpecifics( |
1101 const sync_pb::SessionSpecifics& specifics) { | 1101 const sync_pb::SessionSpecifics& specifics) { |
1102 return syncer::syncable::GenerateSyncableHash(syncer::SESSIONS, | 1102 return syncer::syncable::GenerateSyncableHash(syncer::SESSIONS, |
1103 TagFromSpecifics(specifics)); | 1103 TagFromSpecifics(specifics)); |
1104 } | 1104 } |
1105 | 1105 |
1106 }; // namespace browser_sync | 1106 }; // namespace browser_sync |
OLD | NEW |