| 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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 "description": "True if key events should be swallowed natively and
not propagated if preventDefault() gets called by the extension's background pag
e." | 75 "description": "True if key events should be swallowed natively and
not propagated if preventDefault() gets called by the extension's background pag
e." |
| 76 } | 76 } |
| 77 ] | 77 ] |
| 78 } | 78 } |
| 79 ], | 79 ], |
| 80 "events": [ | 80 "events": [ |
| 81 { | 81 { |
| 82 "name": "onIntroduceChromeVox", | 82 "name": "onIntroduceChromeVox", |
| 83 "type": "function", | 83 "type": "function", |
| 84 "description": "Fired whenever ChromeVox should output introduction." | 84 "description": "Fired whenever ChromeVox should output introduction." |
| 85 }, |
| 86 { |
| 87 "name": "onAccessibilityGesture", |
| 88 "type": "function", |
| 89 "description": "Fired when an accessibility gesture is detected by the t
ouch exploration controller.", |
| 90 "parameters": [ |
| 91 { |
| 92 "name": "gesture", |
| 93 "type": "string" |
| 94 } |
| 95 ] |
| 85 } | 96 } |
| 86 ] | 97 ] |
| 87 } | 98 } |
| 88 ] | 99 ] |
| OLD | NEW |