OLD | NEW |
1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 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 // Keep this file in sync with the .proto files in this directory. | 5 // Keep this file in sync with the .proto files in this directory. |
6 | 6 |
7 #ifndef COMPONENTS_SYNC_PROTOCOL_PROTO_VALUE_CONVERSIONS_H_ | 7 #ifndef COMPONENTS_SYNC_PROTOCOL_PROTO_VALUE_CONVERSIONS_H_ |
8 #define COMPONENTS_SYNC_PROTOCOL_PROTO_VALUE_CONVERSIONS_H_ | 8 #define COMPONENTS_SYNC_PROTOCOL_PROTO_VALUE_CONVERSIONS_H_ |
9 | 9 |
10 #include <memory> | 10 #include <memory> |
(...skipping 19 matching lines...) Expand all Loading... |
30 class ClientToServerMessage; | 30 class ClientToServerMessage; |
31 class ClientToServerResponse; | 31 class ClientToServerResponse; |
32 class CollapsedInfo; | 32 class CollapsedInfo; |
33 class DatatypeAssociationStats; | 33 class DatatypeAssociationStats; |
34 class DebugEventInfo; | 34 class DebugEventInfo; |
35 class DebugInfo; | 35 class DebugInfo; |
36 class DeviceInfoSpecifics; | 36 class DeviceInfoSpecifics; |
37 class DeviceInformation; | 37 class DeviceInformation; |
38 class DictionarySpecifics; | 38 class DictionarySpecifics; |
39 class EncryptedData; | 39 class EncryptedData; |
| 40 class EntityMetadata; |
40 class EntitySpecifics; | 41 class EntitySpecifics; |
41 class EverythingDirective; | 42 class EverythingDirective; |
42 class ExperimentsSpecifics; | 43 class ExperimentsSpecifics; |
43 class ExtensionSettingSpecifics; | 44 class ExtensionSettingSpecifics; |
44 class ExtensionSpecifics; | 45 class ExtensionSpecifics; |
45 class FaviconImageSpecifics; | 46 class FaviconImageSpecifics; |
46 class FaviconTrackingSpecifics; | 47 class FaviconTrackingSpecifics; |
47 class GlobalIdDirective; | 48 class GlobalIdDirective; |
48 class HistoryDeleteDirectiveSpecifics; | 49 class HistoryDeleteDirectiveSpecifics; |
49 class KeystoreEncryptionFlagsSpecifics; | 50 class KeystoreEncryptionFlagsSpecifics; |
(...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
293 | 294 |
294 std::unique_ptr<base::DictionaryValue> SyncCycleCompletedEventInfoToValue( | 295 std::unique_ptr<base::DictionaryValue> SyncCycleCompletedEventInfoToValue( |
295 const sync_pb::SyncCycleCompletedEventInfo& proto); | 296 const sync_pb::SyncCycleCompletedEventInfo& proto); |
296 | 297 |
297 std::unique_ptr<base::DictionaryValue> ClientConfigParamsToValue( | 298 std::unique_ptr<base::DictionaryValue> ClientConfigParamsToValue( |
298 const sync_pb::ClientConfigParams& proto); | 299 const sync_pb::ClientConfigParams& proto); |
299 | 300 |
300 std::unique_ptr<base::DictionaryValue> AttachmentIdProtoToValue( | 301 std::unique_ptr<base::DictionaryValue> AttachmentIdProtoToValue( |
301 const sync_pb::AttachmentIdProto& proto); | 302 const sync_pb::AttachmentIdProto& proto); |
302 | 303 |
| 304 std::unique_ptr<base::DictionaryValue> EntityMetadataToValue( |
| 305 const sync_pb::EntityMetadata& metadata); |
| 306 |
303 } // namespace syncer | 307 } // namespace syncer |
304 | 308 |
305 #endif // COMPONENTS_SYNC_PROTOCOL_PROTO_VALUE_CONVERSIONS_H_ | 309 #endif // COMPONENTS_SYNC_PROTOCOL_PROTO_VALUE_CONVERSIONS_H_ |
OLD | NEW |