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 #ifndef SYNC_SYNCABLE_SYNCABLE_ENUM_CONVERSIONS_H_ | 5 #ifndef SYNC_SYNCABLE_SYNCABLE_ENUM_CONVERSIONS_H_ |
6 #define SYNC_SYNCABLE_SYNCABLE_ENUM_CONVERSIONS_H_ | 6 #define SYNC_SYNCABLE_SYNCABLE_ENUM_CONVERSIONS_H_ |
7 | 7 |
8 // Keep this file in sync with entry_kernel.h. | 8 // Keep this file in sync with entry_kernel.h. |
9 | 9 |
10 #include "sync/base/sync_export.h" | 10 #include "sync/base/sync_export.h" |
(...skipping 26 matching lines...) Expand all Loading... |
37 | 37 |
38 SYNC_EXPORT_PRIVATE const char* GetBitFieldString(BitField bit_field); | 38 SYNC_EXPORT_PRIVATE const char* GetBitFieldString(BitField bit_field); |
39 | 39 |
40 SYNC_EXPORT_PRIVATE const char* GetStringFieldString(StringField string_field); | 40 SYNC_EXPORT_PRIVATE const char* GetStringFieldString(StringField string_field); |
41 | 41 |
42 SYNC_EXPORT_PRIVATE const char* GetProtoFieldString(ProtoField proto_field); | 42 SYNC_EXPORT_PRIVATE const char* GetProtoFieldString(ProtoField proto_field); |
43 | 43 |
44 SYNC_EXPORT_PRIVATE const char* GetUniquePositionFieldString( | 44 SYNC_EXPORT_PRIVATE const char* GetUniquePositionFieldString( |
45 UniquePositionField position_field); | 45 UniquePositionField position_field); |
46 | 46 |
| 47 SYNC_EXPORT_PRIVATE const char* GetAttachmentMetadataFieldString( |
| 48 AttachmentMetadataField attachment_metadata_field); |
| 49 |
47 SYNC_EXPORT_PRIVATE const char* GetBitTempString(BitTemp bit_temp); | 50 SYNC_EXPORT_PRIVATE const char* GetBitTempString(BitTemp bit_temp); |
48 | 51 |
49 } // namespace syncable | 52 } // namespace syncable |
50 } // namespace syncer | 53 } // namespace syncer |
51 | 54 |
52 #endif // SYNC_SYNCABLE_SYNCABLE_ENUM_CONVERSIONS_H_ | 55 #endif // SYNC_SYNCABLE_SYNCABLE_ENUM_CONVERSIONS_H_ |
OLD | NEW |