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 20 matching lines...) Expand all Loading... |
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; | 38 class ExtensionSettingSpecifics; |
39 class ExtensionSpecifics; | 39 class ExtensionSpecifics; |
40 class ExtensionSpecifics; | 40 class ExtensionSpecifics; |
| 41 class FaviconSpecifics; |
41 class GlobalIdDirective; | 42 class GlobalIdDirective; |
42 class HistoryDeleteDirectiveSpecifics; | 43 class HistoryDeleteDirectiveSpecifics; |
43 class KeystoreEncryptionFlagsSpecifics; | 44 class KeystoreEncryptionFlagsSpecifics; |
44 class NigoriSpecifics; | 45 class NigoriSpecifics; |
45 class PasswordSpecifics; | 46 class PasswordSpecifics; |
46 class PasswordSpecificsData; | 47 class PasswordSpecificsData; |
47 class PreferenceSpecifics; | 48 class PreferenceSpecifics; |
48 class PriorityPreferenceSpecifics; | 49 class PriorityPreferenceSpecifics; |
49 class SearchEngineSpecifics; | 50 class SearchEngineSpecifics; |
50 class SessionHeader; | 51 class SessionHeader; |
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
149 | 150 |
150 SYNC_EXPORT_PRIVATE base::DictionaryValue* PriorityPreferenceSpecificsToValue( | 151 SYNC_EXPORT_PRIVATE base::DictionaryValue* PriorityPreferenceSpecificsToValue( |
151 const sync_pb::PriorityPreferenceSpecifics& proto); | 152 const sync_pb::PriorityPreferenceSpecifics& proto); |
152 | 153 |
153 SYNC_EXPORT_PRIVATE base::DictionaryValue* ExtensionSettingSpecificsToValue( | 154 SYNC_EXPORT_PRIVATE base::DictionaryValue* ExtensionSettingSpecificsToValue( |
154 const sync_pb::ExtensionSettingSpecifics& extension_setting_specifics); | 155 const sync_pb::ExtensionSettingSpecifics& extension_setting_specifics); |
155 | 156 |
156 SYNC_EXPORT_PRIVATE base::DictionaryValue* ExtensionSpecificsToValue( | 157 SYNC_EXPORT_PRIVATE base::DictionaryValue* ExtensionSpecificsToValue( |
157 const sync_pb::ExtensionSpecifics& extension_specifics); | 158 const sync_pb::ExtensionSpecifics& extension_specifics); |
158 | 159 |
| 160 SYNC_EXPORT_PRIVATE base::DictionaryValue* FaviconSpecificsToValue( |
| 161 const sync_pb::FaviconSpecifics& favicon_specifics); |
| 162 |
159 SYNC_EXPORT base::DictionaryValue* HistoryDeleteDirectiveSpecificsToValue( | 163 SYNC_EXPORT base::DictionaryValue* HistoryDeleteDirectiveSpecificsToValue( |
160 const sync_pb::HistoryDeleteDirectiveSpecifics& | 164 const sync_pb::HistoryDeleteDirectiveSpecifics& |
161 history_delete_directive_specifics); | 165 history_delete_directive_specifics); |
162 | 166 |
163 SYNC_EXPORT_PRIVATE base::DictionaryValue* NigoriSpecificsToValue( | 167 SYNC_EXPORT_PRIVATE base::DictionaryValue* NigoriSpecificsToValue( |
164 const sync_pb::NigoriSpecifics& nigori_specifics); | 168 const sync_pb::NigoriSpecifics& nigori_specifics); |
165 | 169 |
166 SYNC_EXPORT_PRIVATE base::DictionaryValue* PasswordSpecificsToValue( | 170 SYNC_EXPORT_PRIVATE base::DictionaryValue* PasswordSpecificsToValue( |
167 const sync_pb::PasswordSpecifics& password_specifics); | 171 const sync_pb::PasswordSpecifics& password_specifics); |
168 | 172 |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
209 | 213 |
210 base::DictionaryValue* SyncCycleCompletedEventInfoToValue( | 214 base::DictionaryValue* SyncCycleCompletedEventInfoToValue( |
211 const sync_pb::SyncCycleCompletedEventInfo& proto); | 215 const sync_pb::SyncCycleCompletedEventInfo& proto); |
212 | 216 |
213 base::DictionaryValue* ClientConfigParamsToValue( | 217 base::DictionaryValue* ClientConfigParamsToValue( |
214 const sync_pb::ClientConfigParams& proto); | 218 const sync_pb::ClientConfigParams& proto); |
215 | 219 |
216 } // namespace syncer | 220 } // namespace syncer |
217 | 221 |
218 #endif // SYNC_PROTOCOL_PROTO_VALUE_CONVERSIONS_H_ | 222 #endif // SYNC_PROTOCOL_PROTO_VALUE_CONVERSIONS_H_ |
OLD | NEW |