OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 CHROME_BROWSER_POLICY_CLOUD_POLICY_CONSTANTS_H_ | 5 #ifndef CHROME_BROWSER_POLICY_CLOUD_POLICY_CONSTANTS_H_ |
6 #define CHROME_BROWSER_POLICY_CLOUD_POLICY_CONSTANTS_H_ | 6 #define CHROME_BROWSER_POLICY_CLOUD_POLICY_CONSTANTS_H_ |
7 #pragma once | |
8 | 7 |
9 namespace policy { | 8 namespace policy { |
10 | 9 |
11 // Constants related to the device management protocol. | 10 // Constants related to the device management protocol. |
12 namespace dm_protocol { | 11 namespace dm_protocol { |
13 | 12 |
14 // Name extern constants for URL query parameters. | 13 // Name extern constants for URL query parameters. |
15 extern const char kParamAgent[]; | 14 extern const char kParamAgent[]; |
16 extern const char kParamAppType[]; | 15 extern const char kParamAppType[]; |
17 extern const char kParamDeviceID[]; | 16 extern const char kParamDeviceID[]; |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 DEVICE_MODE_PENDING, // The device mode is not yet available. | 87 DEVICE_MODE_PENDING, // The device mode is not yet available. |
89 DEVICE_MODE_NOT_SET, // The device is not yet enrolled or owned. | 88 DEVICE_MODE_NOT_SET, // The device is not yet enrolled or owned. |
90 DEVICE_MODE_CONSUMER, // The device is locally owned as consumer device. | 89 DEVICE_MODE_CONSUMER, // The device is locally owned as consumer device. |
91 DEVICE_MODE_ENTERPRISE, // The device is enrolled as an enterprise device. | 90 DEVICE_MODE_ENTERPRISE, // The device is enrolled as an enterprise device. |
92 DEVICE_MODE_KIOSK, // The device is enrolled as kiosk/retail device. | 91 DEVICE_MODE_KIOSK, // The device is enrolled as kiosk/retail device. |
93 }; | 92 }; |
94 | 93 |
95 } // namespace policy | 94 } // namespace policy |
96 | 95 |
97 #endif // CHROME_BROWSER_POLICY_CLOUD_POLICY_CONSTANTS_H_ | 96 #endif // CHROME_BROWSER_POLICY_CLOUD_POLICY_CONSTANTS_H_ |
OLD | NEW |