| 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 * @fileoverview Definitions for the Chromium extensions API used by ChromeVox. | 7 * @fileoverview Definitions for the Chromium extensions API used by ChromeVox. |
| 8 * | 8 * |
| 9 * @externs | 9 * @externs |
| 10 */ | 10 */ |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 */ | 29 */ |
| 30 chrome.automation.EventType = { | 30 chrome.automation.EventType = { |
| 31 activedescendantchanged: '', | 31 activedescendantchanged: '', |
| 32 alert: '', | 32 alert: '', |
| 33 ariaAttributeChanged: '', | 33 ariaAttributeChanged: '', |
| 34 autocorrectionOccured: '', | 34 autocorrectionOccured: '', |
| 35 blur: '', | 35 blur: '', |
| 36 checkedStateChanged: '', | 36 checkedStateChanged: '', |
| 37 childrenChanged: '', | 37 childrenChanged: '', |
| 38 documentSelectionChanged: '', | 38 documentSelectionChanged: '', |
| 39 expandedChanged: '', |
| 39 focus: '', | 40 focus: '', |
| 40 hide: '', | 41 hide: '', |
| 41 hover: '', | 42 hover: '', |
| 42 invalidStatusChanged: '', | 43 invalidStatusChanged: '', |
| 43 layoutComplete: '', | 44 layoutComplete: '', |
| 44 liveRegionChanged: '', | 45 liveRegionChanged: '', |
| 45 loadComplete: '', | 46 loadComplete: '', |
| 46 locationChanged: '', | 47 locationChanged: '', |
| 47 menuEnd: '', | 48 menuEnd: '', |
| 48 menuListItemSelected: '', | 49 menuListItemSelected: '', |
| (...skipping 614 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 663 */ | 664 */ |
| 664 chrome.automation.AutomationRootNode.prototype.focusObject; | 665 chrome.automation.AutomationRootNode.prototype.focusObject; |
| 665 | 666 |
| 666 /** | 667 /** |
| 667 * @type {number} | 668 * @type {number} |
| 668 */ | 669 */ |
| 669 chrome.automation.AutomationRootNode.prototype.focusOffset; | 670 chrome.automation.AutomationRootNode.prototype.focusOffset; |
| 670 | 671 |
| 671 /** @type {function() : !Object} */ | 672 /** @type {function() : !Object} */ |
| 672 chrome.app.getDetails; | 673 chrome.app.getDetails; |
| OLD | NEW |