Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4628)

Unified Diff: chrome/browser/policy/cloud_policy_constants.h

Issue 9403010: Add support for kiosk mode on the client. Make sure the settings are written in the lockbox. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed nitty nit. Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/policy/browser_policy_connector.cc ('k') | chrome/browser/policy/cloud_policy_data_store.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/policy/cloud_policy_constants.h
diff --git a/chrome/browser/policy/cloud_policy_constants.h b/chrome/browser/policy/cloud_policy_constants.h
index 80140e4ec778135ab1693394ed87668be6cc6c2a..9ab0b2bda2ab4246e7f346cf8e36a59b908c26f5 100644
--- a/chrome/browser/policy/cloud_policy_constants.h
+++ b/chrome/browser/policy/cloud_policy_constants.h
@@ -81,6 +81,14 @@ enum DeviceManagementStatus {
DM_STATUS_SERVICE_POLICY_NOT_FOUND = 902,
};
+// List of modes that the device can be locked into.
+enum DeviceMode {
+ DEVICE_MODE_UNKNOWN, // The device is not yet enrolled or owned.
+ DEVICE_MODE_CONSUMER, // The device is locally owned as consumer device.
+ DEVICE_MODE_ENTERPRISE, // The device is enrolled as an enterprise device.
+ DEVICE_MODE_KIOSK, // The device is enrolled as kiosk/retail device.
+};
+
} // namespace policy
#endif // CHROME_BROWSER_POLICY_CLOUD_POLICY_CONSTANTS_H_
« no previous file with comments | « chrome/browser/policy/browser_policy_connector.cc ('k') | chrome/browser/policy/cloud_policy_data_store.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698