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', |
1514 window: 'window' | 1515 window: 'window' |
1515 }; | 1516 }; |
1516 /** | 1517 /** |
1517 * Describes characteristics of an $(ref:automation.AutomationNode). | 1518 * Describes characteristics of an $(ref:automation.AutomationNode). |
1518 * @enum {string} | 1519 * @enum {string} |
1519 */ | 1520 */ |
1520 chrome.automation.StateType = { | 1521 chrome.automation.StateType = { |
1521 busy: 'busy', | 1522 busy: 'busy', |
1522 checked: 'checked', | 1523 checked: 'checked', |
1523 collapsed: 'collapsed', | 1524 collapsed: 'collapsed', |
(...skipping 14 matching lines...) Expand all Loading... |
1538 pressed: 'pressed', | 1539 pressed: 'pressed', |
1539 protected: 'protected', | 1540 protected: 'protected', |
1540 readOnly: 'readOnly', | 1541 readOnly: 'readOnly', |
1541 required: 'required', | 1542 required: 'required', |
1542 selectable: 'selectable', | 1543 selectable: 'selectable', |
1543 selected: 'selected', | 1544 selected: 'selected', |
1544 vertical: 'vertical', | 1545 vertical: 'vertical', |
1545 visited: 'visited' | 1546 visited: 'visited' |
1546 }; | 1547 }; |
1547 // End auto generated externs; do not edit. | 1548 // End auto generated externs; do not edit. |
OLD | NEW |