Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(384)

Side by Side Diff: chrome/browser/resources/chromeos/chromevox/common/chrome_extension_externs.js

Issue 880063002: Ensure WebView notifies desktop automation on creation, destruction, and change (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix leaks? Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | chrome/browser/resources/chromeos/chromevox/common/editable_text_base.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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.
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/chromeos/chromevox/common/editable_text_base.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698