| 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 // Keep this file in sync with the .proto files in this directory. | |
| 9 | |
| 10 #include "components/sync/protocol/app_list_specifics.pb.h" | 8 #include "components/sync/protocol/app_list_specifics.pb.h" |
| 11 #include "components/sync/protocol/app_specifics.pb.h" | 9 #include "components/sync/protocol/app_specifics.pb.h" |
| 12 #include "components/sync/protocol/client_debug_info.pb.h" | 10 #include "components/sync/protocol/client_debug_info.pb.h" |
| 13 #include "components/sync/protocol/reading_list_specifics.pb.h" | 11 #include "components/sync/protocol/reading_list_specifics.pb.h" |
| 14 #include "components/sync/protocol/session_specifics.pb.h" | 12 #include "components/sync/protocol/session_specifics.pb.h" |
| 15 #include "components/sync/protocol/sync.pb.h" | 13 #include "components/sync/protocol/sync.pb.h" |
| 16 | 14 |
| 15 // Keep this file in sync with the .proto files in this directory. |
| 16 // |
| 17 // Utility functions to get the string equivalent for some sync proto | 17 // Utility functions to get the string equivalent for some sync proto |
| 18 // enums. | 18 // enums. |
| 19 | 19 |
| 20 namespace syncer { | 20 namespace syncer { |
| 21 | 21 |
| 22 // The returned strings (which don't have to be freed) are in ASCII. | 22 // The returned strings (which don't have to be freed) are in ASCII. |
| 23 // The result of passing in an invalid enum value is undefined. | 23 // The result of passing in an invalid enum value is undefined. |
| 24 | 24 |
| 25 const char* GetAppListItemTypeString( | 25 const char* GetAppListItemTypeString( |
| 26 sync_pb::AppListSpecifics::AppListItemType item_type); | 26 sync_pb::AppListSpecifics::AppListItemType item_type); |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 | 74 |
| 75 const char* SingletonDebugEventTypeString( | 75 const char* SingletonDebugEventTypeString( |
| 76 sync_pb::SyncEnums::SingletonDebugEventType type); | 76 sync_pb::SyncEnums::SingletonDebugEventType type); |
| 77 | 77 |
| 78 const char* GetBlockedStateString(sync_pb::TabNavigation::BlockedState state); | 78 const char* GetBlockedStateString(sync_pb::TabNavigation::BlockedState state); |
| 79 const char* GetPasswordStateString(sync_pb::TabNavigation::PasswordState state); | 79 const char* GetPasswordStateString(sync_pb::TabNavigation::PasswordState state); |
| 80 | 80 |
| 81 } // namespace syncer | 81 } // namespace syncer |
| 82 | 82 |
| 83 #endif // COMPONENTS_SYNC_PROTOCOL_PROTO_ENUM_CONVERSIONS_H_ | 83 #endif // COMPONENTS_SYNC_PROTOCOL_PROTO_ENUM_CONVERSIONS_H_ |
| OLD | NEW |