| 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 25 matching lines...) Expand all Loading... |
| 36 class ExtensionSettingSpecifics; | 36 class ExtensionSettingSpecifics; |
| 37 class ExtensionSpecifics; | 37 class ExtensionSpecifics; |
| 38 class ExtensionSpecifics; | 38 class ExtensionSpecifics; |
| 39 class GlobalIdDirective; | 39 class GlobalIdDirective; |
| 40 class HistoryDeleteDirectiveSpecifics; | 40 class HistoryDeleteDirectiveSpecifics; |
| 41 class KeystoreEncryptionFlagsSpecifics; | 41 class KeystoreEncryptionFlagsSpecifics; |
| 42 class NigoriSpecifics; | 42 class NigoriSpecifics; |
| 43 class PasswordSpecifics; | 43 class PasswordSpecifics; |
| 44 class PasswordSpecificsData; | 44 class PasswordSpecificsData; |
| 45 class PreferenceSpecifics; | 45 class PreferenceSpecifics; |
| 46 class PriorityPreferenceSpecifics; |
| 46 class SearchEngineSpecifics; | 47 class SearchEngineSpecifics; |
| 47 class SessionHeader; | 48 class SessionHeader; |
| 48 class SessionSpecifics; | 49 class SessionSpecifics; |
| 49 class SessionTab; | 50 class SessionTab; |
| 50 class SessionWindow; | 51 class SessionWindow; |
| 51 class SyncCycleCompletedEventInfo; | 52 class SyncCycleCompletedEventInfo; |
| 52 class SyncedNotificationSpecifics; | 53 class SyncedNotificationSpecifics; |
| 53 class TabNavigation; | 54 class TabNavigation; |
| 54 class ThemeSpecifics; | 55 class ThemeSpecifics; |
| 55 class TimeRangeDirective; | 56 class TimeRangeDirective; |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 |
| 141 SYNC_EXPORT_PRIVATE base::DictionaryValue* ExperimentsSpecificsToValue( | 142 SYNC_EXPORT_PRIVATE base::DictionaryValue* ExperimentsSpecificsToValue( |
| 142 const sync_pb::ExperimentsSpecifics& proto); | 143 const sync_pb::ExperimentsSpecifics& proto); |
| 143 | 144 |
| 145 SYNC_EXPORT_PRIVATE base::DictionaryValue* PriorityPreferenceSpecificsToValue( |
| 146 const sync_pb::PriorityPreferenceSpecifics& proto); |
| 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( |
| 151 const sync_pb::HistoryDeleteDirectiveSpecifics& | 155 const sync_pb::HistoryDeleteDirectiveSpecifics& |
| 152 history_delete_directive_specifics); | 156 history_delete_directive_specifics); |
| 153 | 157 |
| (...skipping 43 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 |