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

Side by Side Diff: third_party/closure_compiler/externs/automation.js

Issue 2917123002: Support role description in automation/ChromeVox (Closed)
Patch Set: Rebase. Created 3 years, 6 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 | « chrome/renderer/resources/extensions/automation/automation_node.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2017 The Chromium Authors. All rights reserved. 1 // Copyright 2017 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 // This file was generated by: 5 // This file was generated by:
6 // tools/json_schema_compiler/compiler.py. 6 // tools/json_schema_compiler/compiler.py.
7 // NOTE: The format of types has changed. 'FooType' is now 7 // NOTE: The format of types has changed. 'FooType' is now
8 // 'chrome.automation.FooType'. 8 // 'chrome.automation.FooType'.
9 // Please run the closure compiler before committing changes. 9 // Please run the closure compiler before committing changes.
10 // See https://chromium.googlesource.com/chromium/src/+/master/docs/closure_comp ilation.md 10 // See https://chromium.googlesource.com/chromium/src/+/master/docs/closure_comp ilation.md
(...skipping 417 matching lines...) Expand 10 before | Expand all | Expand 10 after
428 chrome.automation.AutomationNode.prototype.description; 428 chrome.automation.AutomationNode.prototype.description;
429 429
430 /** 430 /**
431 * The placeholder for this text field, if any. 431 * The placeholder for this text field, if any.
432 * @type {(string|undefined)} 432 * @type {(string|undefined)}
433 * @see https://developer.chrome.com/extensions/automation#type-placeholder 433 * @see https://developer.chrome.com/extensions/automation#type-placeholder
434 */ 434 */
435 chrome.automation.AutomationNode.prototype.placeholder; 435 chrome.automation.AutomationNode.prototype.placeholder;
436 436
437 /** 437 /**
438 * The role description for this node.
439 * @type {(string|undefined)}
440 * @see https://developer.chrome.com/extensions/automation#type-roleDescription
441 */
442 chrome.automation.AutomationNode.prototype.roleDescription;
443
444 /**
438 * The accessible name for this node, via the <a href="http://www.w3.org/TR/wai- aria/roles#namecalculation"> Accessible Name Calculation</a> process. 445 * The accessible name for this node, via the <a href="http://www.w3.org/TR/wai- aria/roles#namecalculation"> Accessible Name Calculation</a> process.
439 * @type {(string|undefined)} 446 * @type {(string|undefined)}
440 * @see https://developer.chrome.com/extensions/automation#type-name 447 * @see https://developer.chrome.com/extensions/automation#type-name
441 */ 448 */
442 chrome.automation.AutomationNode.prototype.name; 449 chrome.automation.AutomationNode.prototype.name;
443 450
444 /** 451 /**
445 * The source of the name. 452 * The source of the name.
446 * @type {(!chrome.automation.NameFromType|undefined)} 453 * @type {(!chrome.automation.NameFromType|undefined)}
447 * @see https://developer.chrome.com/extensions/automation#type-nameFrom 454 * @see https://developer.chrome.com/extensions/automation#type-nameFrom
(...skipping 760 matching lines...) Expand 10 before | Expand all | Expand 10 after
1208 * tree between the two node/offset pairs gets included in the selection. The 1215 * tree between the two node/offset pairs gets included in the selection. The
1209 * anchor is where the user started the selection, while the focus is the point 1216 * anchor is where the user started the selection, while the focus is the point
1210 * at which the selection gets extended e.g. when dragging with a mouse or using 1217 * at which the selection gets extended e.g. when dragging with a mouse or using
1211 * the keyboard. For nodes with the role staticText, the offset gives the 1218 * the keyboard. For nodes with the role staticText, the offset gives the
1212 * character offset within the value where the selection starts or ends, 1219 * character offset within the value where the selection starts or ends,
1213 * respectively. 1220 * respectively.
1214 * @param {!chrome.automation.SetDocumentSelectionParams} params 1221 * @param {!chrome.automation.SetDocumentSelectionParams} params
1215 * @see https://developer.chrome.com/extensions/automation#method-setDocumentSel ection 1222 * @see https://developer.chrome.com/extensions/automation#method-setDocumentSel ection
1216 */ 1223 */
1217 chrome.automation.setDocumentSelection = function(params) {}; 1224 chrome.automation.setDocumentSelection = function(params) {};
OLDNEW
« no previous file with comments | « chrome/renderer/resources/extensions/automation/automation_node.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698