| 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 23 matching lines...) Expand all Loading... |
| 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 ExtensionSpecifics; | 38 class ExtensionSpecifics; |
| 39 class FaviconImageSpecifics; | 39 class FaviconImageSpecifics; |
| 40 class FaviconTrackingSpecifics; | 40 class FaviconTrackingSpecifics; |
| 41 class GlobalIdDirective; | 41 class GlobalIdDirective; |
| 42 class HistoryDeleteDirectiveSpecifics; | 42 class HistoryDeleteDirectiveSpecifics; |
| 43 class KeystoreEncryptionFlagsSpecifics; | 43 class KeystoreEncryptionFlagsSpecifics; |
| 44 class ManagedUserSettingSpecifics; |
| 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; |
| 51 class SessionSpecifics; | 52 class SessionSpecifics; |
| 52 class SessionTab; | 53 class SessionTab; |
| 53 class SessionWindow; | 54 class SessionWindow; |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 SYNC_EXPORT_PRIVATE base::DictionaryValue* FaviconImageSpecificsToValue( | 160 SYNC_EXPORT_PRIVATE base::DictionaryValue* FaviconImageSpecificsToValue( |
| 160 const sync_pb::FaviconImageSpecifics& favicon_image_specifics); | 161 const sync_pb::FaviconImageSpecifics& favicon_image_specifics); |
| 161 | 162 |
| 162 SYNC_EXPORT_PRIVATE base::DictionaryValue* FaviconTrackingSpecificsToValue( | 163 SYNC_EXPORT_PRIVATE base::DictionaryValue* FaviconTrackingSpecificsToValue( |
| 163 const sync_pb::FaviconTrackingSpecifics& favicon_tracking_specifics); | 164 const sync_pb::FaviconTrackingSpecifics& favicon_tracking_specifics); |
| 164 | 165 |
| 165 SYNC_EXPORT base::DictionaryValue* HistoryDeleteDirectiveSpecificsToValue( | 166 SYNC_EXPORT base::DictionaryValue* HistoryDeleteDirectiveSpecificsToValue( |
| 166 const sync_pb::HistoryDeleteDirectiveSpecifics& | 167 const sync_pb::HistoryDeleteDirectiveSpecifics& |
| 167 history_delete_directive_specifics); | 168 history_delete_directive_specifics); |
| 168 | 169 |
| 170 SYNC_EXPORT_PRIVATE base::DictionaryValue* ManagedUserSettingSpecificsToValue( |
| 171 const sync_pb::ManagedUserSettingSpecifics& managed_user_setting_specifics); |
| 172 |
| 169 SYNC_EXPORT_PRIVATE base::DictionaryValue* NigoriSpecificsToValue( | 173 SYNC_EXPORT_PRIVATE base::DictionaryValue* NigoriSpecificsToValue( |
| 170 const sync_pb::NigoriSpecifics& nigori_specifics); | 174 const sync_pb::NigoriSpecifics& nigori_specifics); |
| 171 | 175 |
| 172 SYNC_EXPORT_PRIVATE base::DictionaryValue* PasswordSpecificsToValue( | 176 SYNC_EXPORT_PRIVATE base::DictionaryValue* PasswordSpecificsToValue( |
| 173 const sync_pb::PasswordSpecifics& password_specifics); | 177 const sync_pb::PasswordSpecifics& password_specifics); |
| 174 | 178 |
| 175 SYNC_EXPORT_PRIVATE base::DictionaryValue* PreferenceSpecificsToValue( | 179 SYNC_EXPORT_PRIVATE base::DictionaryValue* PreferenceSpecificsToValue( |
| 176 const sync_pb::PreferenceSpecifics& password_specifics); | 180 const sync_pb::PreferenceSpecifics& password_specifics); |
| 177 | 181 |
| 178 SYNC_EXPORT_PRIVATE base::DictionaryValue* SyncedNotificationSpecificsToValue( | 182 SYNC_EXPORT_PRIVATE base::DictionaryValue* SyncedNotificationSpecificsToValue( |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 | 219 |
| 216 base::DictionaryValue* SyncCycleCompletedEventInfoToValue( | 220 base::DictionaryValue* SyncCycleCompletedEventInfoToValue( |
| 217 const sync_pb::SyncCycleCompletedEventInfo& proto); | 221 const sync_pb::SyncCycleCompletedEventInfo& proto); |
| 218 | 222 |
| 219 base::DictionaryValue* ClientConfigParamsToValue( | 223 base::DictionaryValue* ClientConfigParamsToValue( |
| 220 const sync_pb::ClientConfigParams& proto); | 224 const sync_pb::ClientConfigParams& proto); |
| 221 | 225 |
| 222 } // namespace syncer | 226 } // namespace syncer |
| 223 | 227 |
| 224 #endif // SYNC_PROTOCOL_PROTO_VALUE_CONVERSIONS_H_ | 228 #endif // SYNC_PROTOCOL_PROTO_VALUE_CONVERSIONS_H_ |
| OLD | NEW |