| 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 27 matching lines...) Expand all Loading... |
| 38 documentSelectionChanged: '', | 38 documentSelectionChanged: '', |
| 39 expandedChanged: '', | 39 expandedChanged: '', |
| 40 focus: '', | 40 focus: '', |
| 41 hide: '', | 41 hide: '', |
| 42 hover: '', | 42 hover: '', |
| 43 invalidStatusChanged: '', | 43 invalidStatusChanged: '', |
| 44 layoutComplete: '', | 44 layoutComplete: '', |
| 45 liveRegionChanged: '', | 45 liveRegionChanged: '', |
| 46 loadComplete: '', | 46 loadComplete: '', |
| 47 locationChanged: '', | 47 locationChanged: '', |
| 48 mediaStartedPlaying: '', |
| 49 mediaStoppedPlaying: '', |
| 48 menuEnd: '', | 50 menuEnd: '', |
| 49 menuListItemSelected: '', | 51 menuListItemSelected: '', |
| 50 menuListValueChanged: '', | 52 menuListValueChanged: '', |
| 51 menuPopupEnd: '', | 53 menuPopupEnd: '', |
| 52 menuPopupStart: '', | 54 menuPopupStart: '', |
| 53 menuStart: '', | 55 menuStart: '', |
| 54 rowCollapsed: '', | 56 rowCollapsed: '', |
| 55 rowCountChanged: '', | 57 rowCountChanged: '', |
| 56 rowExpanded: '', | 58 rowExpanded: '', |
| 57 scrollPositionChanged: '', | 59 scrollPositionChanged: '', |
| (...skipping 624 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 682 */ | 684 */ |
| 683 chrome.automation.AutomationRootNode.prototype.focusObject; | 685 chrome.automation.AutomationRootNode.prototype.focusObject; |
| 684 | 686 |
| 685 /** | 687 /** |
| 686 * @type {number} | 688 * @type {number} |
| 687 */ | 689 */ |
| 688 chrome.automation.AutomationRootNode.prototype.focusOffset; | 690 chrome.automation.AutomationRootNode.prototype.focusOffset; |
| 689 | 691 |
| 690 /** @type {function() : !Object} */ | 692 /** @type {function() : !Object} */ |
| 691 chrome.app.getDetails; | 693 chrome.app.getDetails; |
| OLD | NEW |