| 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 1493 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1504 timer: 'timer', | 1504 timer: 'timer', |
| 1505 titleBar: 'titleBar', | 1505 titleBar: 'titleBar', |
| 1506 toggleButton: 'toggleButton', | 1506 toggleButton: 'toggleButton', |
| 1507 toolbar: 'toolbar', | 1507 toolbar: 'toolbar', |
| 1508 treeGrid: 'treeGrid', | 1508 treeGrid: 'treeGrid', |
| 1509 treeItem: 'treeItem', | 1509 treeItem: 'treeItem', |
| 1510 tree: 'tree', | 1510 tree: 'tree', |
| 1511 unknown: 'unknown', | 1511 unknown: 'unknown', |
| 1512 tooltip: 'tooltip', | 1512 tooltip: 'tooltip', |
| 1513 webArea: 'webArea', | 1513 webArea: 'webArea', |
| 1514 webView: 'webView', | |
| 1515 window: 'window' | 1514 window: 'window' |
| 1516 }; | 1515 }; |
| 1517 /** | 1516 /** |
| 1518 * Describes characteristics of an $(ref:automation.AutomationNode). | 1517 * Describes characteristics of an $(ref:automation.AutomationNode). |
| 1519 * @enum {string} | 1518 * @enum {string} |
| 1520 */ | 1519 */ |
| 1521 chrome.automation.StateType = { | 1520 chrome.automation.StateType = { |
| 1522 busy: 'busy', | 1521 busy: 'busy', |
| 1523 checked: 'checked', | 1522 checked: 'checked', |
| 1524 collapsed: 'collapsed', | 1523 collapsed: 'collapsed', |
| (...skipping 14 matching lines...) Expand all Loading... |
| 1539 pressed: 'pressed', | 1538 pressed: 'pressed', |
| 1540 protected: 'protected', | 1539 protected: 'protected', |
| 1541 readOnly: 'readOnly', | 1540 readOnly: 'readOnly', |
| 1542 required: 'required', | 1541 required: 'required', |
| 1543 selectable: 'selectable', | 1542 selectable: 'selectable', |
| 1544 selected: 'selected', | 1543 selected: 'selected', |
| 1545 vertical: 'vertical', | 1544 vertical: 'vertical', |
| 1546 visited: 'visited' | 1545 visited: 'visited' |
| 1547 }; | 1546 }; |
| 1548 // End auto generated externs; do not edit. | 1547 // End auto generated externs; do not edit. |
| OLD | NEW |