| 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 1359 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1370 splitter: 'splitter', | 1370 splitter: 'splitter', |
| 1371 staticText: 'staticText', | 1371 staticText: 'staticText', |
| 1372 status: 'status', | 1372 status: 'status', |
| 1373 switch: 'switch', | 1373 switch: 'switch', |
| 1374 tabGroup: 'tabGroup', | 1374 tabGroup: 'tabGroup', |
| 1375 tabList: 'tabList', | 1375 tabList: 'tabList', |
| 1376 tabPanel: 'tabPanel', | 1376 tabPanel: 'tabPanel', |
| 1377 tab: 'tab', | 1377 tab: 'tab', |
| 1378 tableHeaderContainer: 'tableHeaderContainer', | 1378 tableHeaderContainer: 'tableHeaderContainer', |
| 1379 table: 'table', | 1379 table: 'table', |
| 1380 textArea: 'textArea', | |
| 1381 textField: 'textField', | 1380 textField: 'textField', |
| 1382 time: 'time', | 1381 time: 'time', |
| 1383 timer: 'timer', | 1382 timer: 'timer', |
| 1384 titleBar: 'titleBar', | 1383 titleBar: 'titleBar', |
| 1385 toggleButton: 'toggleButton', | 1384 toggleButton: 'toggleButton', |
| 1386 toolbar: 'toolbar', | 1385 toolbar: 'toolbar', |
| 1387 treeGrid: 'treeGrid', | 1386 treeGrid: 'treeGrid', |
| 1388 treeItem: 'treeItem', | 1387 treeItem: 'treeItem', |
| 1389 tree: 'tree', | 1388 tree: 'tree', |
| 1390 unknown: 'unknown', | 1389 unknown: 'unknown', |
| (...skipping 346 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1737 /** | 1736 /** |
| 1738 * @const | 1737 * @const |
| 1739 */ | 1738 */ |
| 1740 chrome.commands = {}; | 1739 chrome.commands = {}; |
| 1741 | 1740 |
| 1742 | 1741 |
| 1743 /** | 1742 /** |
| 1744 * @type {ChromeEvent} | 1743 * @type {ChromeEvent} |
| 1745 */ | 1744 */ |
| 1746 chrome.commands.onCommand; | 1745 chrome.commands.onCommand; |
| OLD | NEW |