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 17 matching lines...) Expand all Loading... |
28 class DebugEventInfo; | 28 class DebugEventInfo; |
29 class DebugInfo; | 29 class DebugInfo; |
30 class DeviceInfoSpecifics; | 30 class DeviceInfoSpecifics; |
31 class DeviceInformation; | 31 class DeviceInformation; |
32 class DictionarySpecifics; | 32 class DictionarySpecifics; |
33 class EncryptedData; | 33 class EncryptedData; |
34 class EntitySpecifics; | 34 class EntitySpecifics; |
35 class EverythingDirective; | 35 class EverythingDirective; |
36 class ExperimentsSpecifics; | 36 class ExperimentsSpecifics; |
37 class ExtensionSettingSpecifics; | 37 class ExtensionSettingSpecifics; |
38 class ExtensionSettingSpecifics; | |
39 class ExtensionSpecifics; | 38 class ExtensionSpecifics; |
40 class ExtensionSpecifics; | 39 class FaviconImageSpecifics; |
| 40 class FaviconTrackingSpecifics; |
41 class GlobalIdDirective; | 41 class GlobalIdDirective; |
42 class HistoryDeleteDirectiveSpecifics; | 42 class HistoryDeleteDirectiveSpecifics; |
43 class KeystoreEncryptionFlagsSpecifics; | 43 class KeystoreEncryptionFlagsSpecifics; |
44 class NigoriSpecifics; | 44 class NigoriSpecifics; |
45 class PasswordSpecifics; | 45 class PasswordSpecifics; |
46 class PasswordSpecificsData; | 46 class PasswordSpecificsData; |
47 class PreferenceSpecifics; | 47 class PreferenceSpecifics; |
48 class PriorityPreferenceSpecifics; | 48 class PriorityPreferenceSpecifics; |
49 class SearchEngineSpecifics; | 49 class SearchEngineSpecifics; |
50 class SessionHeader; | 50 class SessionHeader; |
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
149 | 149 |
150 SYNC_EXPORT_PRIVATE base::DictionaryValue* PriorityPreferenceSpecificsToValue( | 150 SYNC_EXPORT_PRIVATE base::DictionaryValue* PriorityPreferenceSpecificsToValue( |
151 const sync_pb::PriorityPreferenceSpecifics& proto); | 151 const sync_pb::PriorityPreferenceSpecifics& proto); |
152 | 152 |
153 SYNC_EXPORT_PRIVATE base::DictionaryValue* ExtensionSettingSpecificsToValue( | 153 SYNC_EXPORT_PRIVATE base::DictionaryValue* ExtensionSettingSpecificsToValue( |
154 const sync_pb::ExtensionSettingSpecifics& extension_setting_specifics); | 154 const sync_pb::ExtensionSettingSpecifics& extension_setting_specifics); |
155 | 155 |
156 SYNC_EXPORT_PRIVATE base::DictionaryValue* ExtensionSpecificsToValue( | 156 SYNC_EXPORT_PRIVATE base::DictionaryValue* ExtensionSpecificsToValue( |
157 const sync_pb::ExtensionSpecifics& extension_specifics); | 157 const sync_pb::ExtensionSpecifics& extension_specifics); |
158 | 158 |
| 159 SYNC_EXPORT_PRIVATE base::DictionaryValue* FaviconImageSpecificsToValue( |
| 160 const sync_pb::FaviconImageSpecifics& favicon_image_specifics); |
| 161 |
| 162 SYNC_EXPORT_PRIVATE base::DictionaryValue* FaviconTrackingSpecificsToValue( |
| 163 const sync_pb::FaviconTrackingSpecifics& favicon_tracking_specifics); |
| 164 |
159 SYNC_EXPORT base::DictionaryValue* HistoryDeleteDirectiveSpecificsToValue( | 165 SYNC_EXPORT base::DictionaryValue* HistoryDeleteDirectiveSpecificsToValue( |
160 const sync_pb::HistoryDeleteDirectiveSpecifics& | 166 const sync_pb::HistoryDeleteDirectiveSpecifics& |
161 history_delete_directive_specifics); | 167 history_delete_directive_specifics); |
162 | 168 |
163 SYNC_EXPORT_PRIVATE base::DictionaryValue* NigoriSpecificsToValue( | 169 SYNC_EXPORT_PRIVATE base::DictionaryValue* NigoriSpecificsToValue( |
164 const sync_pb::NigoriSpecifics& nigori_specifics); | 170 const sync_pb::NigoriSpecifics& nigori_specifics); |
165 | 171 |
166 SYNC_EXPORT_PRIVATE base::DictionaryValue* PasswordSpecificsToValue( | 172 SYNC_EXPORT_PRIVATE base::DictionaryValue* PasswordSpecificsToValue( |
167 const sync_pb::PasswordSpecifics& password_specifics); | 173 const sync_pb::PasswordSpecifics& password_specifics); |
168 | 174 |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
209 | 215 |
210 base::DictionaryValue* SyncCycleCompletedEventInfoToValue( | 216 base::DictionaryValue* SyncCycleCompletedEventInfoToValue( |
211 const sync_pb::SyncCycleCompletedEventInfo& proto); | 217 const sync_pb::SyncCycleCompletedEventInfo& proto); |
212 | 218 |
213 base::DictionaryValue* ClientConfigParamsToValue( | 219 base::DictionaryValue* ClientConfigParamsToValue( |
214 const sync_pb::ClientConfigParams& proto); | 220 const sync_pb::ClientConfigParams& proto); |
215 | 221 |
216 } // namespace syncer | 222 } // namespace syncer |
217 | 223 |
218 #endif // SYNC_PROTOCOL_PROTO_VALUE_CONVERSIONS_H_ | 224 #endif // SYNC_PROTOCOL_PROTO_VALUE_CONVERSIONS_H_ |
OLD | NEW |