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 600 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
611 /** | 611 /** |
612 * @type {(number|undefined)} | 612 * @type {(number|undefined)} |
613 */ | 613 */ |
614 chrome.automation.focusOffset; | 614 chrome.automation.focusOffset; |
615 | 615 |
616 /** | 616 /** |
617 * @type {(chrome.automation.AutomationNode|undefined)} | 617 * @type {(chrome.automation.AutomationNode|undefined)} |
618 */ | 618 */ |
619 chrome.automation.AutomationNode.prototype.activeDescendant; | 619 chrome.automation.AutomationNode.prototype.activeDescendant; |
620 | 620 |
| 621 /** @type {number} */ |
| 622 chrome.automation.AutomationNode.prototype.tableCellColumnIndex; |
| 623 |
| 624 /** @type {number} */ |
| 625 chrome.automation.AutomationNode.prototype.tableCellRowIndex; |
| 626 |
| 627 /** @type {number} */ |
| 628 chrome.automation.AutomationNode.prototype.tableColumnCount; |
| 629 |
| 630 /** @type {number} */ |
| 631 chrome.automation.AutomationNode.prototype.tableRowCount; |
| 632 |
621 /** @type {function() : !Object} */ | 633 /** @type {function() : !Object} */ |
622 chrome.app.getDetails; | 634 chrome.app.getDetails; |
OLD | NEW |