| 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 | 7 #pragma once |
| 8 | 8 |
| 9 namespace policy { | 9 namespace policy { |
| 10 | 10 |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 | 83 |
| 84 // List of modes that the device can be locked into. | 84 // List of modes that the device can be locked into. |
| 85 enum DeviceMode { | 85 enum DeviceMode { |
| 86 DEVICE_MODE_PENDING, // The device mode is not yet available. | 86 DEVICE_MODE_PENDING, // The device mode is not yet available. |
| 87 DEVICE_MODE_NOT_SET, // The device is not yet enrolled or owned. | 87 DEVICE_MODE_NOT_SET, // The device is not yet enrolled or owned. |
| 88 DEVICE_MODE_CONSUMER, // The device is locally owned as consumer device. | 88 DEVICE_MODE_CONSUMER, // The device is locally owned as consumer device. |
| 89 DEVICE_MODE_ENTERPRISE, // The device is enrolled as an enterprise device. | 89 DEVICE_MODE_ENTERPRISE, // The device is enrolled as an enterprise device. |
| 90 DEVICE_MODE_KIOSK, // The device is enrolled as kiosk/retail device. | 90 DEVICE_MODE_KIOSK, // The device is enrolled as kiosk/retail device. |
| 91 }; | 91 }; |
| 92 | 92 |
| 93 // Cloud policy status codes. |
| 94 enum CloudPolicyStatus { |
| 95 // No errors. |
| 96 CLOUD_POLICY_STATUS_SUCCESS, |
| 97 }; |
| 98 |
| 93 } // namespace policy | 99 } // namespace policy |
| 94 | 100 |
| 95 #endif // CHROME_BROWSER_POLICY_CLOUD_POLICY_CONSTANTS_H_ | 101 #endif // CHROME_BROWSER_POLICY_CLOUD_POLICY_CONSTANTS_H_ |
| OLD | NEW |