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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
130 | 131 |
131 base::DictionaryValue* AutofillProfileSpecificsToValue( | 132 base::DictionaryValue* AutofillProfileSpecificsToValue( |
132 const sync_pb::AutofillProfileSpecifics& autofill_profile_specifics); | 133 const sync_pb::AutofillProfileSpecifics& autofill_profile_specifics); |
133 | 134 |
134 base::DictionaryValue* BookmarkSpecificsToValue( | 135 base::DictionaryValue* BookmarkSpecificsToValue( |
135 const sync_pb::BookmarkSpecifics& bookmark_specifics); | 136 const sync_pb::BookmarkSpecifics& bookmark_specifics); |
136 | 137 |
137 base::DictionaryValue* DeviceInfoSpecificsToValue( | 138 base::DictionaryValue* DeviceInfoSpecificsToValue( |
138 const sync_pb::DeviceInfoSpecifics& device_info_specifics); | 139 const sync_pb::DeviceInfoSpecifics& device_info_specifics); |
139 | 140 |
| 141 base::DictionaryValue* DictionarySpecificsToValue( |
| 142 const sync_pb::DictionarySpecifics& dictionary_specifics); |
| 143 |
140 base::DictionaryValue* ExperimentsSpecificsToValue( | 144 base::DictionaryValue* ExperimentsSpecificsToValue( |
141 const sync_pb::ExperimentsSpecifics& proto); | 145 const sync_pb::ExperimentsSpecifics& proto); |
142 | 146 |
143 base::DictionaryValue* ExtensionSettingSpecificsToValue( | 147 base::DictionaryValue* ExtensionSettingSpecificsToValue( |
144 const sync_pb::ExtensionSettingSpecifics& extension_setting_specifics); | 148 const sync_pb::ExtensionSettingSpecifics& extension_setting_specifics); |
145 | 149 |
146 base::DictionaryValue* ExtensionSpecificsToValue( | 150 base::DictionaryValue* ExtensionSpecificsToValue( |
147 const sync_pb::ExtensionSpecifics& extension_specifics); | 151 const sync_pb::ExtensionSpecifics& extension_specifics); |
148 | 152 |
149 SYNC_EXPORT base::DictionaryValue* HistoryDeleteDirectiveSpecificsToValue( | 153 SYNC_EXPORT base::DictionaryValue* HistoryDeleteDirectiveSpecificsToValue( |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
192 | 196 |
193 base::DictionaryValue* DebugInfoToValue( | 197 base::DictionaryValue* DebugInfoToValue( |
194 const sync_pb::DebugInfo& proto); | 198 const sync_pb::DebugInfo& proto); |
195 | 199 |
196 base::DictionaryValue* SyncCycleCompletedEventInfoToValue( | 200 base::DictionaryValue* SyncCycleCompletedEventInfoToValue( |
197 const sync_pb::SyncCycleCompletedEventInfo& proto); | 201 const sync_pb::SyncCycleCompletedEventInfo& proto); |
198 | 202 |
199 } // namespace syncer | 203 } // namespace syncer |
200 | 204 |
201 #endif // SYNC_PROTOCOL_PROTO_VALUE_CONVERSIONS_H_ | 205 #endif // SYNC_PROTOCOL_PROTO_VALUE_CONVERSIONS_H_ |
OLD | NEW |