| 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 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 286 "name": "onMenuClosed", | 286 "name": "onMenuClosed", |
| 287 "type": "function", | 287 "type": "function", |
| 288 "description": "Fired when a menu is closed.", | 288 "description": "Fired when a menu is closed.", |
| 289 "parameters": [ | 289 "parameters": [ |
| 290 { | 290 { |
| 291 "$ref": "AccessibilityObject", | 291 "$ref": "AccessibilityObject", |
| 292 "name": "menu", | 292 "name": "menu", |
| 293 "description": "Information about the menu that was closed." | 293 "description": "Information about the menu that was closed." |
| 294 } | 294 } |
| 295 ] | 295 ] |
| 296 }, |
| 297 { |
| 298 "name": "onSpokenFeedbackEnabled", |
| 299 "type": "function", |
| 300 "description": "Fired when spoken feedback is enabled.", |
| 301 "parameters": [ |
| 302 { |
| 303 "type": "function", |
| 304 "name": "callback", |
| 305 "optional": true, |
| 306 "parameters": [ |
| 307 { |
| 308 "type": "boolean", |
| 309 "name": "makeAnnouncements", |
| 310 "description": "Whether to make introductory announcements." |
| 311 } |
| 312 ] |
| 313 } |
| 314 ] |
| 315 }, |
| 316 { |
| 317 "name": "onSpokenFeedbackDisabled", |
| 318 "type": "function", |
| 319 "description": "Fired when spoken feedback is disabled." |
| 296 } | 320 } |
| 297 ] | 321 ] |
| 298 } | 322 } |
| 299 ] | 323 ] |
| OLD | NEW |