| 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 COMPONENTS_POLICY_CORE_COMMON_CLOUD_CLOUD_POLICY_CONSTANTS_H_ | 5 #ifndef COMPONENTS_POLICY_CORE_COMMON_CLOUD_CLOUD_POLICY_CONSTANTS_H_ |
| 6 #define COMPONENTS_POLICY_CORE_COMMON_CLOUD_CLOUD_POLICY_CONSTANTS_H_ | 6 #define COMPONENTS_POLICY_CORE_COMMON_CLOUD_CLOUD_POLICY_CONSTANTS_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "components/policy/policy_export.h" | 10 #include "components/policy/policy_export.h" |
| 11 | 11 |
| 12 namespace enterprise_management { | |
| 13 class PolicyData; | |
| 14 } | |
| 15 | |
| 16 namespace policy { | 12 namespace policy { |
| 17 | 13 |
| 18 // Constants related to the device management protocol. | 14 // Constants related to the device management protocol. |
| 19 namespace dm_protocol { | 15 namespace dm_protocol { |
| 20 | 16 |
| 21 // Name extern constants for URL query parameters. | 17 // Name extern constants for URL query parameters. |
| 22 POLICY_EXPORT extern const char kParamAgent[]; | 18 POLICY_EXPORT extern const char kParamAgent[]; |
| 23 POLICY_EXPORT extern const char kParamAppType[]; | 19 POLICY_EXPORT extern const char kParamAppType[]; |
| 24 POLICY_EXPORT extern const char kParamCritical[]; | 20 POLICY_EXPORT extern const char kParamCritical[]; |
| 25 POLICY_EXPORT extern const char kParamDeviceID[]; | 21 POLICY_EXPORT extern const char kParamDeviceID[]; |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 // appropriate action (currently, launching | 126 // appropriate action (currently, launching |
| 131 // offline demo mode). | 127 // offline demo mode). |
| 132 DEVICE_MODE_CONSUMER_KIOSK_AUTOLAUNCH, // The device is locally owned as | 128 DEVICE_MODE_CONSUMER_KIOSK_AUTOLAUNCH, // The device is locally owned as |
| 133 // consumer kiosk with ability to auto | 129 // consumer kiosk with ability to auto |
| 134 // launch a kiosk webapp. | 130 // launch a kiosk webapp. |
| 135 }; | 131 }; |
| 136 | 132 |
| 137 } // namespace policy | 133 } // namespace policy |
| 138 | 134 |
| 139 #endif // COMPONENTS_POLICY_CORE_COMMON_CLOUD_CLOUD_POLICY_CONSTANTS_H_ | 135 #endif // COMPONENTS_POLICY_CORE_COMMON_CLOUD_CLOUD_POLICY_CONSTANTS_H_ |
| OLD | NEW |