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 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
198 /** | 198 /** |
199 * @enum {string} | 199 * @enum {string} |
200 */ | 200 */ |
201 chrome.automation.StateType = { | 201 chrome.automation.StateType = { |
202 busy: '', | 202 busy: '', |
203 checked: '', | 203 checked: '', |
204 collapsed: '', | 204 collapsed: '', |
205 default: '', | 205 default: '', |
206 disabled: '', | 206 disabled: '', |
207 editable: '', | 207 editable: '', |
208 enabled: '', | |
209 expanded: '', | 208 expanded: '', |
210 focusable: '', | 209 focusable: '', |
211 focused: '', | 210 focused: '', |
212 haspopup: '', | 211 haspopup: '', |
213 horizontal: '', | 212 horizontal: '', |
214 hovered: '', | 213 hovered: '', |
215 indeterminate: '', | 214 indeterminate: '', |
216 invisible: '', | 215 invisible: '', |
217 linked: '', | 216 linked: '', |
218 multiline: '', | 217 multiline: '', |
(...skipping 420 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
639 */ | 638 */ |
640 chrome.automation.AutomationRootNode.prototype.focusObject; | 639 chrome.automation.AutomationRootNode.prototype.focusObject; |
641 | 640 |
642 /** | 641 /** |
643 * @type {number} | 642 * @type {number} |
644 */ | 643 */ |
645 chrome.automation.AutomationRootNode.prototype.focusOffset; | 644 chrome.automation.AutomationRootNode.prototype.focusOffset; |
646 | 645 |
647 /** @type {function() : !Object} */ | 646 /** @type {function() : !Object} */ |
648 chrome.app.getDetails; | 647 chrome.app.getDetails; |
OLD | NEW |