| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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": "accessibilityPrivate", | 7 "namespace": "accessibilityPrivate", |
| 8 "compiler_options": { | 8 "compiler_options": { |
| 9 "implemented_in": "chrome/browser/accessibility/accessibility_extension_ap
i.h" | 9 "implemented_in": "chrome/browser/accessibility/accessibility_extension_ap
i.h" |
| 10 }, | 10 }, |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 } | 124 } |
| 125 }, | 125 }, |
| 126 { | 126 { |
| 127 "id": "AccessibilityObject", | 127 "id": "AccessibilityObject", |
| 128 "type": "object", | 128 "type": "object", |
| 129 "description": "Parent class for accessibility information about an obje
ct.", | 129 "description": "Parent class for accessibility information about an obje
ct.", |
| 130 "properties": { | 130 "properties": { |
| 131 "type": { | 131 "type": { |
| 132 "type": "string", | 132 "type": "string", |
| 133 "description": "The type of this object, which determines the conten
ts of 'details'.", | 133 "description": "The type of this object, which determines the conten
ts of 'details'.", |
| 134 "enum": ["alert", "button", "checkbox", "combobox", "link", "menu",
"menuitem", "radiobutton", "slider", "statictext", "tab", "textbox", "tree", "tr
eeitem", "window"] | 134 "enum": ["alert", "button", "checkbox", "combobox", "link", "menu",
"menuitem", "radiobutton", "slider", "tab", "textbox", "tree", "treeitem", "wind
ow"] |
| 135 }, | 135 }, |
| 136 "name": { | 136 "name": { |
| 137 "type": "string", | 137 "type": "string", |
| 138 "description": "The localized name of the object, like OK or Passwor
d. Do not rely on an exact string match because the text will be in the user's l
anguage and may change in the future." | 138 "description": "The localized name of the object, like OK or Passwor
d. Do not rely on an exact string match because the text will be in the user's l
anguage and may change in the future." |
| 139 }, | 139 }, |
| 140 "context": { | 140 "context": { |
| 141 "type": "string", | 141 "type": "string", |
| 142 "description": "The localized name of the context for the object, li
ke the name of the surrounding toolbar or group of controls.", | 142 "description": "The localized name of the context for the object, li
ke the name of the surrounding toolbar or group of controls.", |
| 143 "optional": true | 143 "optional": true |
| 144 }, | 144 }, |
| (...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 340 { | 340 { |
| 341 "type": "boolean", | 341 "type": "boolean", |
| 342 "name": "makeAnnouncements", | 342 "name": "makeAnnouncements", |
| 343 "description": "Whether to make introductory announcements." | 343 "description": "Whether to make introductory announcements." |
| 344 } | 344 } |
| 345 ] | 345 ] |
| 346 } | 346 } |
| 347 ] | 347 ] |
| 348 } | 348 } |
| 349 ] | 349 ] |
| OLD | NEW |