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