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 [ | 5 [ |
6 { | 6 { |
7 "namespace": "chromeosInfoPrivate", | 7 "namespace": "chromeosInfoPrivate", |
8 "description": "none", | 8 "description": "none", |
9 "compiler_options": { | 9 "compiler_options": { |
10 "implemented_in": "chrome/browser/chromeos/extensions/info_private_api.h" | 10 "implemented_in": "chrome/browser/chromeos/extensions/info_private_api.h" |
(...skipping 20 matching lines...) Expand all Loading... |
31 "name": "propertiesDictionary", | 31 "name": "propertiesDictionary", |
32 "type": "object", | 32 "type": "object", |
33 "description": "Dictionary which contains all requested properti
es", | 33 "description": "Dictionary which contains all requested properti
es", |
34 "properties": { | 34 "properties": { |
35 "board" : {"type": "string", "optional": true, "description":
"Board name"}, | 35 "board" : {"type": "string", "optional": true, "description":
"Board name"}, |
36 "customizationId": {"type": "string", "optional": true, "descr
iption": "Customization ID"}, | 36 "customizationId": {"type": "string", "optional": true, "descr
iption": "Customization ID"}, |
37 "homeProvider" : {"type": "string", "optional": true, "descrip
tion": "Home provider which is used by the cellular device"}, | 37 "homeProvider" : {"type": "string", "optional": true, "descrip
tion": "Home provider which is used by the cellular device"}, |
38 "hwid": {"type": "string", "optional": true, "description": "H
ardware ID"}, | 38 "hwid": {"type": "string", "optional": true, "description": "H
ardware ID"}, |
39 "initialLocale" : {"type": "string", "optional": true, "descri
ption": "Initial locale for the device"}, | 39 "initialLocale" : {"type": "string", "optional": true, "descri
ption": "Initial locale for the device"}, |
40 "isOwner" : {"type": "boolean", "optional": true, "description
": "True if current logged in user is device owner"}, | 40 "isOwner" : {"type": "boolean", "optional": true, "description
": "True if current logged in user is device owner"}, |
| 41 "clientId" : {"type": "string", "optional": true, "description
": "Device client id"}, |
41 "timezone" : {"type": "string", "optional": true, "description
": "Timezone"}, | 42 "timezone" : {"type": "string", "optional": true, "description
": "Timezone"}, |
42 "a11yLargeCursorEnabled" : {"type": "boolean", "optional": tru
e, "description": "If true, ChromeOS is showing enlarged cursor."}, | 43 "a11yLargeCursorEnabled" : {"type": "boolean", "optional": tru
e, "description": "If true, ChromeOS is showing enlarged cursor."}, |
43 "a11yStickyKeysEnabled" : {"type": "boolean", "optional": true
, "description": "If true, sticky keys are turned on."}, | 44 "a11yStickyKeysEnabled" : {"type": "boolean", "optional": true
, "description": "If true, sticky keys are turned on."}, |
44 "a11ySpokenFeedbackEnabled" : {"type": "boolean", "optional":
true, "description": "If enabled, ChromeOS text-to-speech feature is turned on."
}, | 45 "a11ySpokenFeedbackEnabled" : {"type": "boolean", "optional":
true, "description": "If enabled, ChromeOS text-to-speech feature is turned on."
}, |
45 "a11yHighContrastEnabled" : {"type": "boolean", "optional": tr
ue, "description": "If true, all displays have high contrast mode turned on."}, | 46 "a11yHighContrastEnabled" : {"type": "boolean", "optional": tr
ue, "description": "If true, all displays have high contrast mode turned on."}, |
46 "a11yScreenMagnifierEnabled" : {"type": "boolean", "optional":
true, "description": "If true, all displays have screen magnifier turned on."}, | 47 "a11yScreenMagnifierEnabled" : {"type": "boolean", "optional":
true, "description": "If true, all displays have screen magnifier turned on."}, |
47 "a11yAutoClickEnabled" : {"type": "boolean", "optional": true,
"description": "If true, auto mouse click accessibility feature is turned on."}
, | 48 "a11yAutoClickEnabled" : {"type": "boolean", "optional": true,
"description": "If true, auto mouse click accessibility feature is turned on."}
, |
48 "a11yVirtualKeyboardEnabled" : {"type": "boolean", "optional":
true, "description": "If true, virtual keyboard will be enabled."}, | 49 "a11yVirtualKeyboardEnabled" : {"type": "boolean", "optional":
true, "description": "If true, virtual keyboard will be enabled."}, |
49 "sendFunctionKeys" : {"type": "boolean", "optional": true, "de
scription": "If true, the ChromeOS top row keys send function keys."}, | 50 "sendFunctionKeys" : {"type": "boolean", "optional": true, "de
scription": "If true, the ChromeOS top row keys send function keys."}, |
50 "supportedTimezones" : { | 51 "supportedTimezones" : { |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
84 { | 85 { |
85 "name": "propertyValue", | 86 "name": "propertyValue", |
86 "type": "any", | 87 "type": "any", |
87 "description": "Chrome OS system property value" | 88 "description": "Chrome OS system property value" |
88 } | 89 } |
89 ] | 90 ] |
90 } | 91 } |
91 ] | 92 ] |
92 } | 93 } |
93 ] | 94 ] |
OLD | NEW |