| 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 517 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 528 | 528 |
| 529 chrome.automation.AutomationNode.prototype.doDefault = function() {}; | 529 chrome.automation.AutomationNode.prototype.doDefault = function() {}; |
| 530 | 530 |
| 531 | 531 |
| 532 chrome.automation.AutomationNode.prototype.focus = function() {}; | 532 chrome.automation.AutomationNode.prototype.focus = function() {}; |
| 533 | 533 |
| 534 | 534 |
| 535 chrome.automation.AutomationNode.prototype.showContextMenu = function() {}; | 535 chrome.automation.AutomationNode.prototype.showContextMenu = function() {}; |
| 536 | 536 |
| 537 | 537 |
| 538 chrome.automation.AutomationNode.prototype | |
| 539 .setSequentialFocusNavigationStartingPoint = function() {}; | |
| 540 | |
| 541 | |
| 542 /** | 538 /** |
| 543 * @param {number} start | 539 * @param {number} start |
| 544 * @param {number} end | 540 * @param {number} end |
| 545 */ | 541 */ |
| 546 chrome.automation.AutomationNode.prototype.setSelection = | 542 chrome.automation.AutomationNode.prototype.setSelection = |
| 547 function(start, end) {}; | 543 function(start, end) {}; |
| 548 | 544 |
| 549 /** @type {string} */ | 545 /** @type {string} */ |
| 550 chrome.automation.AutomationNode.prototype.containerLiveStatus; | 546 chrome.automation.AutomationNode.prototype.containerLiveStatus; |
| 551 | 547 |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 682 */ | 678 */ |
| 683 chrome.automation.AutomationRootNode.prototype.focusObject; | 679 chrome.automation.AutomationRootNode.prototype.focusObject; |
| 684 | 680 |
| 685 /** | 681 /** |
| 686 * @type {number} | 682 * @type {number} |
| 687 */ | 683 */ |
| 688 chrome.automation.AutomationRootNode.prototype.focusOffset; | 684 chrome.automation.AutomationRootNode.prototype.focusOffset; |
| 689 | 685 |
| 690 /** @type {function() : !Object} */ | 686 /** @type {function() : !Object} */ |
| 691 chrome.app.getDetails; | 687 chrome.app.getDetails; |
| OLD | NEW |