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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 class PasswordSpecifics; | 53 class PasswordSpecifics; |
54 class PasswordSpecificsData; | 54 class PasswordSpecificsData; |
55 class PreferenceSpecifics; | 55 class PreferenceSpecifics; |
56 class PriorityPreferenceSpecifics; | 56 class PriorityPreferenceSpecifics; |
57 class SearchEngineSpecifics; | 57 class SearchEngineSpecifics; |
58 class SessionHeader; | 58 class SessionHeader; |
59 class SessionSpecifics; | 59 class SessionSpecifics; |
60 class SessionTab; | 60 class SessionTab; |
61 class SessionWindow; | 61 class SessionWindow; |
62 class SimpleCollapsedLayout; | 62 class SimpleCollapsedLayout; |
| 63 class SyncAttachmentId; |
63 class SyncCycleCompletedEventInfo; | 64 class SyncCycleCompletedEventInfo; |
64 class SyncedNotification; | 65 class SyncedNotification; |
65 class SyncedNotificationAction; | 66 class SyncedNotificationAction; |
66 class SyncedNotificationDestination; | 67 class SyncedNotificationDestination; |
67 class SyncedNotificationImage; | 68 class SyncedNotificationImage; |
68 class SyncedNotificationProfileImage; | 69 class SyncedNotificationProfileImage; |
69 class SyncedNotificationRenderInfo; | 70 class SyncedNotificationRenderInfo; |
70 class SyncedNotificationSpecifics; | 71 class SyncedNotificationSpecifics; |
71 class TabNavigation; | 72 class TabNavigation; |
72 class Target; | 73 class Target; |
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
282 | 283 |
283 base::DictionaryValue* DebugInfoToValue( | 284 base::DictionaryValue* DebugInfoToValue( |
284 const sync_pb::DebugInfo& proto); | 285 const sync_pb::DebugInfo& proto); |
285 | 286 |
286 base::DictionaryValue* SyncCycleCompletedEventInfoToValue( | 287 base::DictionaryValue* SyncCycleCompletedEventInfoToValue( |
287 const sync_pb::SyncCycleCompletedEventInfo& proto); | 288 const sync_pb::SyncCycleCompletedEventInfo& proto); |
288 | 289 |
289 base::DictionaryValue* ClientConfigParamsToValue( | 290 base::DictionaryValue* ClientConfigParamsToValue( |
290 const sync_pb::ClientConfigParams& proto); | 291 const sync_pb::ClientConfigParams& proto); |
291 | 292 |
| 293 SYNC_EXPORT_PRIVATE base::DictionaryValue* SyncAttachmentIdToValue( |
| 294 const sync_pb::SyncAttachmentId& proto); |
| 295 |
292 } // namespace syncer | 296 } // namespace syncer |
293 | 297 |
294 #endif // SYNC_PROTOCOL_PROTO_VALUE_CONVERSIONS_H_ | 298 #endif // SYNC_PROTOCOL_PROTO_VALUE_CONVERSIONS_H_ |
OLD | NEW |