| 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 COMPONENTS_SYNC_PROTOCOL_PROTO_ENUM_CONVERSIONS_H_ | 5 #ifndef COMPONENTS_SYNC_PROTOCOL_PROTO_ENUM_CONVERSIONS_H_ |
| 6 #define COMPONENTS_SYNC_PROTOCOL_PROTO_ENUM_CONVERSIONS_H_ | 6 #define COMPONENTS_SYNC_PROTOCOL_PROTO_ENUM_CONVERSIONS_H_ |
| 7 | 7 |
| 8 #include "components/sync/protocol/app_list_specifics.pb.h" | 8 #include "components/sync/protocol/app_list_specifics.pb.h" |
| 9 #include "components/sync/protocol/app_specifics.pb.h" | 9 #include "components/sync/protocol/app_specifics.pb.h" |
| 10 #include "components/sync/protocol/client_debug_info.pb.h" | 10 #include "components/sync/protocol/client_debug_info.pb.h" |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 | 59 |
| 60 const char* ProtoEnumToString( | 60 const char* ProtoEnumToString( |
| 61 sync_pb::WalletMetadataSpecifics::Type wallet_metadata_type); | 61 sync_pb::WalletMetadataSpecifics::Type wallet_metadata_type); |
| 62 | 62 |
| 63 const char* ProtoEnumToString( | 63 const char* ProtoEnumToString( |
| 64 sync_pb::WalletMaskedCreditCard::WalletCardStatus wallet_card_status); | 64 sync_pb::WalletMaskedCreditCard::WalletCardStatus wallet_card_status); |
| 65 | 65 |
| 66 const char* ProtoEnumToString( | 66 const char* ProtoEnumToString( |
| 67 sync_pb::WalletMaskedCreditCard::WalletCardType wallet_card_type); | 67 sync_pb::WalletMaskedCreditCard::WalletCardType wallet_card_type); |
| 68 | 68 |
| 69 const char* ProtoEnumToString( |
| 70 sync_pb::WalletMaskedCreditCard::WalletCardClass wallet_card_class); |
| 71 |
| 69 const char* ProtoEnumToString(sync_pb::SyncEnums::DeviceType device_type); | 72 const char* ProtoEnumToString(sync_pb::SyncEnums::DeviceType device_type); |
| 70 | 73 |
| 71 const char* ProtoEnumToString(sync_pb::SessionTab::FaviconType favicon_type); | 74 const char* ProtoEnumToString(sync_pb::SessionTab::FaviconType favicon_type); |
| 72 | 75 |
| 73 const char* ProtoEnumToString(sync_pb::NigoriSpecifics::PassphraseType type); | 76 const char* ProtoEnumToString(sync_pb::NigoriSpecifics::PassphraseType type); |
| 74 | 77 |
| 75 const char* ProtoEnumToString( | 78 const char* ProtoEnumToString( |
| 76 sync_pb::SyncEnums::SingletonDebugEventType type); | 79 sync_pb::SyncEnums::SingletonDebugEventType type); |
| 77 | 80 |
| 78 const char* ProtoEnumToString(sync_pb::TabNavigation::BlockedState state); | 81 const char* ProtoEnumToString(sync_pb::TabNavigation::BlockedState state); |
| 79 const char* ProtoEnumToString(sync_pb::TabNavigation::PasswordState state); | 82 const char* ProtoEnumToString(sync_pb::TabNavigation::PasswordState state); |
| 80 | 83 |
| 81 } // namespace syncer | 84 } // namespace syncer |
| 82 | 85 |
| 83 #endif // COMPONENTS_SYNC_PROTOCOL_PROTO_ENUM_CONVERSIONS_H_ | 86 #endif // COMPONENTS_SYNC_PROTOCOL_PROTO_ENUM_CONVERSIONS_H_ |
| OLD | NEW |