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

Unified Diff: chrome/common/extensions/api/chromeos_info_private.json

Issue 2686233006: Add managed device signal (Closed)
Patch Set: Minor changes in comments Created 3 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
Index: chrome/common/extensions/api/chromeos_info_private.json
diff --git a/chrome/common/extensions/api/chromeos_info_private.json b/chrome/common/extensions/api/chromeos_info_private.json
index 55d86a711ceab58bd1f340433896e02d8403646a..c0845421be1d524f66cf650668a10cbae1ce04ef 100644
--- a/chrome/common/extensions/api/chromeos_info_private.json
+++ b/chrome/common/extensions/api/chromeos_info_private.json
@@ -40,6 +40,12 @@
"type": "string",
"enum": ["not available", "available", "enabled"],
"description": "Status of the play store. Note: 'available' means that the device supports the playstore but it is not enabled."
+ },
+ {
+ "id": "ManagedDeviceStatus",
+ "type": "string",
+ "enum": ["managed", "not managed"],
+ "description": "Status of enterprise enrollment."
}
],
"functions": [
@@ -71,6 +77,7 @@
"isOwner" : {"type": "boolean", "optional": true, "description": "True if current logged in user is device owner"},
"sessionType": {"$ref": "SessionType", "optional": true},
"playStoreStatus": {"$ref": "PlayStoreStatus", "optional": true},
+ "managedDeviceStatus": {"$ref": "ManagedDeviceStatus", "optional": true},
"clientId" : {"type": "string", "optional": true, "description": "Device client id"},
"timezone" : {"type": "string", "optional": true, "description": "Timezone"},
"a11yLargeCursorEnabled" : {"type": "boolean", "optional": true, "description": "If true, ChromeOS is showing enlarged cursor."},

Powered by Google App Engine
This is Rietveld 408576698