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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 const char* ProtoEnumToString(sync_pb::SessionTab::FaviconType favicon_type); | 74 const char* ProtoEnumToString(sync_pb::SessionTab::FaviconType favicon_type); |
75 | 75 |
76 const char* ProtoEnumToString(sync_pb::NigoriSpecifics::PassphraseType type); | 76 const char* ProtoEnumToString(sync_pb::NigoriSpecifics::PassphraseType type); |
77 | 77 |
78 const char* ProtoEnumToString( | 78 const char* ProtoEnumToString( |
79 sync_pb::SyncEnums::SingletonDebugEventType type); | 79 sync_pb::SyncEnums::SingletonDebugEventType type); |
80 | 80 |
81 const char* ProtoEnumToString(sync_pb::TabNavigation::BlockedState state); | 81 const char* ProtoEnumToString(sync_pb::TabNavigation::BlockedState state); |
82 const char* ProtoEnumToString(sync_pb::TabNavigation::PasswordState state); | 82 const char* ProtoEnumToString(sync_pb::TabNavigation::PasswordState state); |
83 | 83 |
| 84 const char* ProtoEnumToString( |
| 85 sync_pb::TranslateInteraction::Interaction interaction); |
| 86 |
84 } // namespace syncer | 87 } // namespace syncer |
85 | 88 |
86 #endif // COMPONENTS_SYNC_PROTOCOL_PROTO_ENUM_CONVERSIONS_H_ | 89 #endif // COMPONENTS_SYNC_PROTOCOL_PROTO_ENUM_CONVERSIONS_H_ |
OLD | NEW |