| 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": "experimental.accessibility", | 7 "namespace": "experimental.accessibility", |
| 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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 } | 105 } |
| 106 }, | 106 }, |
| 107 { | 107 { |
| 108 "id": "AccessibilityObject", | 108 "id": "AccessibilityObject", |
| 109 "type": "object", | 109 "type": "object", |
| 110 "description": "Parent class for accessibility information about an obje
ct.", | 110 "description": "Parent class for accessibility information about an obje
ct.", |
| 111 "properties": { | 111 "properties": { |
| 112 "type": { | 112 "type": { |
| 113 "type": "string", | 113 "type": "string", |
| 114 "description": "The type of this object, which determines the conten
ts of 'details'.", | 114 "description": "The type of this object, which determines the conten
ts of 'details'.", |
| 115 "enum": ["button", "checkbox", "combobox", "link", "menu", "menuitem
", "radiobutton", "slider", "tab", "textbox", "window"] | 115 "enum": ["alert", "button", "checkbox", "combobox", "link", "menu",
"menuitem", "radiobutton", "slider", "tab", "textbox", "window"] |
| 116 }, | 116 }, |
| 117 "name": { | 117 "name": { |
| 118 "type": "string", | 118 "type": "string", |
| 119 "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." | 119 "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." |
| 120 }, | 120 }, |
| 121 "context": { | 121 "context": { |
| 122 "type": "string", | 122 "type": "string", |
| 123 "description": "The localized name of the context for the object, li
ke the name of the surrounding toolbar or group of controls.", | 123 "description": "The localized name of the context for the object, li
ke the name of the surrounding toolbar or group of controls.", |
| 124 "optional": true | 124 "optional": true |
| 125 }, | 125 }, |
| (...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 307 { | 307 { |
| 308 "type": "boolean", | 308 "type": "boolean", |
| 309 "name": "makeAnnouncements", | 309 "name": "makeAnnouncements", |
| 310 "description": "Whether to make introductory announcements." | 310 "description": "Whether to make introductory announcements." |
| 311 } | 311 } |
| 312 ] | 312 ] |
| 313 } | 313 } |
| 314 ] | 314 ] |
| 315 } | 315 } |
| 316 ] | 316 ] |
| OLD | NEW |