#ifndef SYNC_PROTOCOL_PROTO_ENUM_CONVERSIONS_H_
#define SYNC_PROTOCOL_PROTO_ENUM_CONVERSIONS_H_
#include "sync/base/sync_export.h"
#include "sync/protocol/app_list_specifics.pb.h"
#include "sync/protocol/app_specifics.pb.h"
#include "sync/protocol/client_debug_info.pb.h"
#include "sync/protocol/session_specifics.pb.h"
#include "sync/protocol/sync.pb.h"
namespace syncer {
SYNC_EXPORT_PRIVATE const char* GetAppListItemTypeString(
sync_pb::AppListSpecifics::AppListItemType item_type);
SYNC_EXPORT_PRIVATE const char* GetBrowserTypeString(
sync_pb::SessionWindow::BrowserType browser_type);
SYNC_EXPORT_PRIVATE const char* GetPageTransitionString(
sync_pb::SyncEnums::PageTransition page_transition);
SYNC_EXPORT_PRIVATE const char* GetPageTransitionRedirectTypeString(
sync_pb::SyncEnums::PageTransitionRedirectType
redirect_type);
SYNC_EXPORT const char* GetUpdatesSourceString(
sync_pb::GetUpdatesCallerInfo::GetUpdatesSource updates_source);
SYNC_EXPORT const char* GetUpdatesOriginString(
sync_pb::SyncEnums::GetUpdatesOrigin origin);
SYNC_EXPORT_PRIVATE const char* GetResponseTypeString(
sync_pb::CommitResponse::ResponseType response_type);
SYNC_EXPORT_PRIVATE const char* GetErrorTypeString(
sync_pb::SyncEnums::ErrorType error_type);
SYNC_EXPORT_PRIVATE const char* GetActionString(
sync_pb::SyncEnums::Action action);
SYNC_EXPORT_PRIVATE const char* GetLaunchTypeString(
sync_pb::AppSpecifics::LaunchType launch_type);
const char* GetDeviceTypeString(sync_pb::SyncEnums::DeviceType device_type);
const char* GetFaviconTypeString(sync_pb::SessionTab::FaviconType favicon_type);
const char* PassphraseTypeString(sync_pb::NigoriSpecifics::PassphraseType type);
const char* SingletonDebugEventTypeString(
sync_pb::SyncEnums::SingletonDebugEventType type);
const char* GetBlockedStateString(sync_pb::TabNavigation::BlockedState state);
}
#endif