cloud_device_description_consts.h revision 0529e5d033099cbfc42635f6f6183833b09dff6e
1// Copyright 2014 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef COMPONENTS_CLOUD_DEVICESCLOUD_DEVICE_DESCRIPTION_CONSTS_H_
6#define COMPONENTS_CLOUD_DEVICESCLOUD_DEVICE_DESCRIPTION_CONSTS_H_
7
8// Constants for common parts of JSON representation of CDD/CJT.
9
10namespace cloud_devices {
11
12namespace json {
13
14extern const char kVersion[];
15extern const char kVersion10[];
16
17extern const char kKeyDefault[];
18extern const char kKeyIsDefault[];
19extern const char kKeyOption[];
20
21}  // namespace json
22
23}  // namespace cloud_devices
24
25#endif  // COMPONENTS_CLOUD_DEVICESCLOUD_DEVICE_DESCRIPTION_CONSTS_H_
26