| 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 550 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 561 /** @type {boolean} */ | 561 /** @type {boolean} */ |
| 562 chrome.automation.AutomationNode.prototype.liveBusy; | 562 chrome.automation.AutomationNode.prototype.liveBusy; |
| 563 | 563 |
| 564 | 564 |
| 565 /** | 565 /** |
| 566 * @param {Object} findParams | 566 * @param {Object} findParams |
| 567 */ | 567 */ |
| 568 chrome.automation.AutomationNode.prototype.find = function(findParams) {}; | 568 chrome.automation.AutomationNode.prototype.find = function(findParams) {}; |
| 569 | 569 |
| 570 /** | 570 /** |
| 571 * @param {Object} findParams |
| 572 * @return {Array<chrome.automation.AutomationNode>} |
| 573 */ |
| 574 chrome.automation.AutomationNode.prototype.findAll = function(findParams) {}; |
| 575 |
| 576 /** |
| 571 * @type {string} | 577 * @type {string} |
| 572 */ | 578 */ |
| 573 chrome.automation.AutomationNode.prototype.inputType; | 579 chrome.automation.AutomationNode.prototype.inputType; |
| 574 | 580 |
| 575 /** | 581 /** |
| 576 * @type {(chrome.automation.AutomationNode|undefined)} | 582 * @type {(chrome.automation.AutomationNode|undefined)} |
| 577 */ | 583 */ |
| 578 chrome.automation.AutomationNode.prototype.anchorObject; | 584 chrome.automation.AutomationNode.prototype.anchorObject; |
| 579 | 585 |
| 580 /** | 586 /** |
| (...skipping 24 matching lines...) Expand all Loading... |
| 605 */ | 611 */ |
| 606 chrome.automation.focusOffset; | 612 chrome.automation.focusOffset; |
| 607 | 613 |
| 608 /** | 614 /** |
| 609 * @type {(chrome.automation.AutomationNode|undefined)} | 615 * @type {(chrome.automation.AutomationNode|undefined)} |
| 610 */ | 616 */ |
| 611 chrome.automation.AutomationNode.prototype.activeDescendant; | 617 chrome.automation.AutomationNode.prototype.activeDescendant; |
| 612 | 618 |
| 613 /** @type {function() : !Object} */ | 619 /** @type {function() : !Object} */ |
| 614 chrome.app.getDetails; | 620 chrome.app.getDetails; |
| OLD | NEW |