summaryrefslogtreecommitdiffstats
path: root/chromium/chrome/common/extensions/api/chromeos_info_private.json
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/chrome/common/extensions/api/chromeos_info_private.json')
-rw-r--r--chromium/chrome/common/extensions/api/chromeos_info_private.json38
1 files changed, 28 insertions, 10 deletions
diff --git a/chromium/chrome/common/extensions/api/chromeos_info_private.json b/chromium/chrome/common/extensions/api/chromeos_info_private.json
index f39c8973d4c..65604a06b72 100644
--- a/chromium/chrome/common/extensions/api/chromeos_info_private.json
+++ b/chromium/chrome/common/extensions/api/chromeos_info_private.json
@@ -32,19 +32,29 @@
"type": "object",
"description": "Dictionary which contains all requested properties",
"properties": {
- "board" : {"type": "string", "optional": "true", "description": "Board name"},
- "homeProvider" : {"type": "string", "optional": "true", "description": "Home provider which is used by the cellular device"},
- "hwid": {"type": "string", "optional": "true", "description": "Hardware ID"},
- "initialLocale" : {"type": "string", "optional": "true", "description": "Initial locale for the device"},
- "isOwner" : {"type": "boolean", "optional": "true", "description": "True if current logged in user is device owner"},
- "timezone" : {"type": "string", "optional": "true", "description": "Timezone"},
+ "board" : {"type": "string", "optional": true, "description": "Board name"},
+ "customizationId": {"type": "string", "optional": true, "description": "Customization ID"},
+ "homeProvider" : {"type": "string", "optional": true, "description": "Home provider which is used by the cellular device"},
+ "hwid": {"type": "string", "optional": true, "description": "Hardware ID"},
+ "initialLocale" : {"type": "string", "optional": true, "description": "Initial locale for the device"},
+ "isOwner" : {"type": "boolean", "optional": true, "description": "True if current logged in user is device owner"},
+ "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."},
+ "a11yStickyKeysEnabled" : {"type": "boolean", "optional": true, "description": "If true, sticky keys are turned on."},
+ "a11ySpokenFeedbackEnabled" : {"type": "boolean", "optional": true, "description": "If enabled, ChromeOS text-to-speech feature is turned on."},
+ "a11yHighContrastEnabled" : {"type": "boolean", "optional": true, "description": "If true, all displays have high contrast mode turned on."},
+ "a11yScreenMagnifierEnabled" : {"type": "boolean", "optional": true, "description": "If true, all displays have screen magnifier turned on."},
+ "a11yAutoClickEnabled" : {"type": "boolean", "optional": true, "description": "If true, auto mouse click accessibility feature is turned on."},
+ "a11yVirtualKeyboardEnabled" : {"type": "boolean", "optional": true, "description": "If true, virtual keyboard will be enabled."},
+ "sendFunctionKeys" : {"type": "boolean", "optional": true, "description": "If true, the ChromeOS top row keys send function keys."},
"supportedTimezones" : {
"type": "array",
"items": {
"type": "array",
"items": {"type": "string"}
},
- "optional": "true",
+ "optional": true,
"description": "List of supported timezones definitions."
}
}
@@ -61,12 +71,20 @@
{
"name": "propertyName",
"type": "string",
- "enum": ["timezone"],
+ "enum": ["timezone",
+ "a11yLargeCursorEnabled",
+ "a11yStickyKeysEnabled",
+ "a11ySpokenFeedbackEnabled",
+ "a11yHighContrastEnabled",
+ "a11yScreenMagnifierEnabled",
+ "a11yAutoClickEnabled",
+ "a11yVirtualKeyboardEnabled",
+ "sendFunctionKeys"],
"description": "Chrome OS system property name"
},
{
- "name": "propertyVame",
- "type": "string",
+ "name": "propertyValue",
+ "type": "any",
"description": "Chrome OS system property value"
}
]