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 SYNC_PROTOCOL_PROTO_VALUE_CONVERSIONS_H_ | 7 #ifndef SYNC_PROTOCOL_PROTO_VALUE_CONVERSIONS_H_ |
8 #define SYNC_PROTOCOL_PROTO_VALUE_CONVERSIONS_H_ | 8 #define SYNC_PROTOCOL_PROTO_VALUE_CONVERSIONS_H_ |
9 | 9 |
10 #include "sync/base/sync_export.h" | 10 #include "sync/base/sync_export.h" |
(...skipping 10 matching lines...) Expand all Loading... |
21 class AutofillProfileSpecifics; | 21 class AutofillProfileSpecifics; |
22 class AutofillSpecifics; | 22 class AutofillSpecifics; |
23 class BookmarkSpecifics; | 23 class BookmarkSpecifics; |
24 class ClientToServerMessage; | 24 class ClientToServerMessage; |
25 class ClientToServerResponse; | 25 class ClientToServerResponse; |
26 class DatatypeAssociationStats; | 26 class DatatypeAssociationStats; |
27 class DebugEventInfo; | 27 class DebugEventInfo; |
28 class DebugInfo; | 28 class DebugInfo; |
29 class DeviceInfoSpecifics; | 29 class DeviceInfoSpecifics; |
30 class DeviceInformation; | 30 class DeviceInformation; |
| 31 class DictionarySpecifics; |
31 class EncryptedData; | 32 class EncryptedData; |
32 class EntitySpecifics; | 33 class EntitySpecifics; |
33 class EverythingDirective; | 34 class EverythingDirective; |
34 class ExperimentsSpecifics; | 35 class ExperimentsSpecifics; |
35 class ExtensionSettingSpecifics; | 36 class ExtensionSettingSpecifics; |
36 class ExtensionSettingSpecifics; | 37 class ExtensionSettingSpecifics; |
37 class ExtensionSpecifics; | 38 class ExtensionSpecifics; |
38 class ExtensionSpecifics; | 39 class ExtensionSpecifics; |
39 class GlobalIdDirective; | 40 class GlobalIdDirective; |
40 class HistoryDeleteDirectiveSpecifics; | 41 class HistoryDeleteDirectiveSpecifics; |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
132 | 133 |
133 SYNC_EXPORT_PRIVATE base::DictionaryValue* AutofillProfileSpecificsToValue( | 134 SYNC_EXPORT_PRIVATE base::DictionaryValue* AutofillProfileSpecificsToValue( |
134 const sync_pb::AutofillProfileSpecifics& autofill_profile_specifics); | 135 const sync_pb::AutofillProfileSpecifics& autofill_profile_specifics); |
135 | 136 |
136 SYNC_EXPORT_PRIVATE base::DictionaryValue* BookmarkSpecificsToValue( | 137 SYNC_EXPORT_PRIVATE base::DictionaryValue* BookmarkSpecificsToValue( |
137 const sync_pb::BookmarkSpecifics& bookmark_specifics); | 138 const sync_pb::BookmarkSpecifics& bookmark_specifics); |
138 | 139 |
139 SYNC_EXPORT_PRIVATE base::DictionaryValue* DeviceInfoSpecificsToValue( | 140 SYNC_EXPORT_PRIVATE base::DictionaryValue* DeviceInfoSpecificsToValue( |
140 const sync_pb::DeviceInfoSpecifics& device_info_specifics); | 141 const sync_pb::DeviceInfoSpecifics& device_info_specifics); |
141 | 142 |
| 143 SYNC_EXPORT_PRIVATE base::DictionaryValue* DictionarySpecificsToValue( |
| 144 const sync_pb::DictionarySpecifics& dictionary_specifics); |
| 145 |
142 SYNC_EXPORT_PRIVATE base::DictionaryValue* ExperimentsSpecificsToValue( | 146 SYNC_EXPORT_PRIVATE base::DictionaryValue* ExperimentsSpecificsToValue( |
143 const sync_pb::ExperimentsSpecifics& proto); | 147 const sync_pb::ExperimentsSpecifics& proto); |
144 | 148 |
145 SYNC_EXPORT_PRIVATE base::DictionaryValue* PriorityPreferenceSpecificsToValue( | 149 SYNC_EXPORT_PRIVATE base::DictionaryValue* PriorityPreferenceSpecificsToValue( |
146 const sync_pb::PriorityPreferenceSpecifics& proto); | 150 const sync_pb::PriorityPreferenceSpecifics& proto); |
147 | 151 |
148 SYNC_EXPORT_PRIVATE base::DictionaryValue* ExtensionSettingSpecificsToValue( | 152 SYNC_EXPORT_PRIVATE base::DictionaryValue* ExtensionSettingSpecificsToValue( |
149 const sync_pb::ExtensionSettingSpecifics& extension_setting_specifics); | 153 const sync_pb::ExtensionSettingSpecifics& extension_setting_specifics); |
150 | 154 |
151 SYNC_EXPORT_PRIVATE base::DictionaryValue* ExtensionSpecificsToValue( | 155 SYNC_EXPORT_PRIVATE base::DictionaryValue* ExtensionSpecificsToValue( |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
201 | 205 |
202 base::DictionaryValue* DebugInfoToValue( | 206 base::DictionaryValue* DebugInfoToValue( |
203 const sync_pb::DebugInfo& proto); | 207 const sync_pb::DebugInfo& proto); |
204 | 208 |
205 base::DictionaryValue* SyncCycleCompletedEventInfoToValue( | 209 base::DictionaryValue* SyncCycleCompletedEventInfoToValue( |
206 const sync_pb::SyncCycleCompletedEventInfo& proto); | 210 const sync_pb::SyncCycleCompletedEventInfo& proto); |
207 | 211 |
208 } // namespace syncer | 212 } // namespace syncer |
209 | 213 |
210 #endif // SYNC_PROTOCOL_PROTO_VALUE_CONVERSIONS_H_ | 214 #endif // SYNC_PROTOCOL_PROTO_VALUE_CONVERSIONS_H_ |
OLD | NEW |