blob: fb8d44ba00b8a0b056ca1664d32ce6cb80ebf806 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef SYNC_PROTOCOL_PROTO_ENUM_CONVERSIONS_H_
#define SYNC_PROTOCOL_PROTO_ENUM_CONVERSIONS_H_
#pragma once
// Keep this file in sync with the .proto files in this directory.
#include "sync/protocol/session_specifics.pb.h"
#include "sync/protocol/sync.pb.h"
// Utility functions to get the string equivalent for some sync proto
// enums.
namespace browser_sync {
// The returned strings (which don't have to be freed) are in ASCII.
// The result of passing in an invalid enum value is undefined.
const char* GetBrowserTypeString(
sync_pb::SessionWindow::BrowserType browser_type);
const char* GetPageTransitionString(
sync_pb::TabNavigation::PageTransition page_transition);
const char* GetPageTransitionQualifierString(
sync_pb::TabNavigation::PageTransitionQualifier
page_transition_qualifier);
const char* GetUpdatesSourceString(
sync_pb::GetUpdatesCallerInfo::GetUpdatesSource updates_source);
const char* GetDeviceTypeString(
sync_pb::SessionHeader::DeviceType device_type);
} // namespace browser_sync
#endif // SYNC_PROTOCOL_PROTO_ENUM_CONVERSIONS_H_
|