| 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 614 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 625 | 625 |
| 626 /** @type {number} */ | 626 /** @type {number} */ |
| 627 chrome.automation.AutomationNode.prototype.tableColumnCount; | 627 chrome.automation.AutomationNode.prototype.tableColumnCount; |
| 628 | 628 |
| 629 /** @type {number} */ | 629 /** @type {number} */ |
| 630 chrome.automation.AutomationNode.prototype.tableRowCount; | 630 chrome.automation.AutomationNode.prototype.tableRowCount; |
| 631 | 631 |
| 632 /** @type {number} */ | 632 /** @type {number} */ |
| 633 chrome.automation.AutomationNode.prototype.hierarchicalLevel; | 633 chrome.automation.AutomationNode.prototype.hierarchicalLevel; |
| 634 | 634 |
| 635 /** @type {Array<number>} */ |
| 636 chrome.automation.AutomationNode.prototype.markerTypes; |
| 637 /** @type {Array<number>} */ |
| 638 chrome.automation.AutomationNode.prototype.markerStarts; |
| 639 /** @type {Array<number>} */ |
| 640 chrome.automation.AutomationNode.prototype.markerEnds; |
| 641 |
| 635 /** | 642 /** |
| 636 * @extends {chrome.automation.AutomationNode} | 643 * @extends {chrome.automation.AutomationNode} |
| 637 * @constructor | 644 * @constructor |
| 638 */ | 645 */ |
| 639 chrome.automation.AutomationRootNode = function() {}; | 646 chrome.automation.AutomationRootNode = function() {}; |
| 640 | 647 |
| 641 /** | 648 /** |
| 642 * @type {chrome.automation.AutomationNode} | 649 * @type {chrome.automation.AutomationNode} |
| 643 */ | 650 */ |
| 644 chrome.automation.AutomationRootNode.prototype.anchorObject; | 651 chrome.automation.AutomationRootNode.prototype.anchorObject; |
| 645 | 652 |
| 646 /** | 653 /** |
| 647 * @type {number} | 654 * @type {number} |
| 648 */ | 655 */ |
| 649 chrome.automation.AutomationRootNode.prototype.anchorOffset; | 656 chrome.automation.AutomationRootNode.prototype.anchorOffset; |
| 650 | 657 |
| 651 /** | 658 /** |
| 652 * @type {chrome.automation.AutomationNode} | 659 * @type {chrome.automation.AutomationNode} |
| 653 */ | 660 */ |
| 654 chrome.automation.AutomationRootNode.prototype.focusObject; | 661 chrome.automation.AutomationRootNode.prototype.focusObject; |
| 655 | 662 |
| 656 /** | 663 /** |
| 657 * @type {number} | 664 * @type {number} |
| 658 */ | 665 */ |
| 659 chrome.automation.AutomationRootNode.prototype.focusOffset; | 666 chrome.automation.AutomationRootNode.prototype.focusOffset; |
| 660 | 667 |
| 661 /** @type {function() : !Object} */ | 668 /** @type {function() : !Object} */ |
| 662 chrome.app.getDetails; | 669 chrome.app.getDetails; |
| OLD | NEW |