| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 SYNC_INTERNAL_API_PUBLIC_SESSIONS_SYNC_SOURCE_INFO_H_ | 5 #ifndef SYNC_INTERNAL_API_PUBLIC_SESSIONS_SYNC_SOURCE_INFO_H_ |
| 6 #define SYNC_INTERNAL_API_PUBLIC_SESSIONS_SYNC_SOURCE_INFO_H_ | 6 #define SYNC_INTERNAL_API_PUBLIC_SESSIONS_SYNC_SOURCE_INFO_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "sync/internal_api/public/base/model_type.h" | 9 #include "sync/internal_api/public/base/model_type.h" |
| 10 #include "sync/internal_api/public/base/model_type_payload_map.h" | 10 #include "sync/internal_api/public/base/model_type_state_map.h" |
| 11 #include "sync/protocol/sync.pb.h" | 11 #include "sync/protocol/sync.pb.h" |
| 12 | 12 |
| 13 namespace base { | 13 namespace base { |
| 14 class DictionaryValue; | 14 class DictionaryValue; |
| 15 } | 15 } |
| 16 | 16 |
| 17 namespace syncer { | 17 namespace syncer { |
| 18 namespace sessions { | 18 namespace sessions { |
| 19 | 19 |
| 20 // A container for the source of a sync session. This includes the update | 20 // A container for the source of a sync session. This includes the update |
| 21 // source, the datatypes triggering the sync session, and possible session | 21 // source, the datatypes triggering the sync session, and possible session |
| 22 // specific payloads which should be sent to the server. | 22 // specific payloads which should be sent to the server. |
| 23 struct SyncSourceInfo { | 23 struct SyncSourceInfo { |
| 24 SyncSourceInfo(); | 24 SyncSourceInfo(); |
| 25 explicit SyncSourceInfo(const ModelTypePayloadMap& t); | 25 explicit SyncSourceInfo(const ModelTypeStateMap& t); |
| 26 SyncSourceInfo( | 26 SyncSourceInfo( |
| 27 const sync_pb::GetUpdatesCallerInfo::GetUpdatesSource& u, | 27 const sync_pb::GetUpdatesCallerInfo::GetUpdatesSource& u, |
| 28 const ModelTypePayloadMap& t); | 28 const ModelTypeStateMap& t); |
| 29 ~SyncSourceInfo(); | 29 ~SyncSourceInfo(); |
| 30 | 30 |
| 31 // Caller takes ownership of the returned dictionary. | 31 // Caller takes ownership of the returned dictionary. |
| 32 base::DictionaryValue* ToValue() const; | 32 base::DictionaryValue* ToValue() const; |
| 33 | 33 |
| 34 sync_pb::GetUpdatesCallerInfo::GetUpdatesSource updates_source; | 34 sync_pb::GetUpdatesCallerInfo::GetUpdatesSource updates_source; |
| 35 ModelTypePayloadMap types; | 35 ModelTypeStateMap types; |
| 36 }; | 36 }; |
| 37 | 37 |
| 38 } // namespace sessions | 38 } // namespace sessions |
| 39 } // namespace syncer | 39 } // namespace syncer |
| 40 | 40 |
| 41 #endif // SYNC_INTERNAL_API_PUBLIC_SESSIONS_SYNC_SOURCE_INFO_H_ | 41 #endif // SYNC_INTERNAL_API_PUBLIC_SESSIONS_SYNC_SOURCE_INFO_H_ |
| OLD | NEW |