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

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

Issue 2544203004: Display images in multiline Braille
Patch Set: Minor Nits, added TODO comments Created 4 years 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/browser/resources/chromeos/chromevox/host/interface/braille_interface.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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 -g externs 6 // tools/json_schema_compiler/compiler.py -g externs
7 // chrome/common/extensions/api/automation.idl 7 // chrome/common/extensions/api/automation.idl
8 // 8 //
9 // Further edits were applied by hand due to bugs / limitations in 9 // Further edits were applied by hand due to bugs / limitations in
10 // json_schema_compiler. 10 // json_schema_compiler.
(...skipping 16 matching lines...) Expand all
27 ariaAttributeChanged: '', 27 ariaAttributeChanged: '',
28 autocorrectionOccured: '', 28 autocorrectionOccured: '',
29 blur: '', 29 blur: '',
30 checkedStateChanged: '', 30 checkedStateChanged: '',
31 childrenChanged: '', 31 childrenChanged: '',
32 documentSelectionChanged: '', 32 documentSelectionChanged: '',
33 expandedChanged: '', 33 expandedChanged: '',
34 focus: '', 34 focus: '',
35 hide: '', 35 hide: '',
36 hover: '', 36 hover: '',
37 imageFrameUpdated: '',
37 invalidStatusChanged: '', 38 invalidStatusChanged: '',
38 layoutComplete: '', 39 layoutComplete: '',
39 liveRegionChanged: '', 40 liveRegionChanged: '',
40 loadComplete: '', 41 loadComplete: '',
41 locationChanged: '', 42 locationChanged: '',
42 menuEnd: '', 43 menuEnd: '',
43 menuListItemSelected: '', 44 menuListItemSelected: '',
44 menuListValueChanged: '', 45 menuListValueChanged: '',
45 menuPopupEnd: '', 46 menuPopupEnd: '',
46 menuPopupStart: '', 47 menuPopupStart: '',
(...skipping 377 matching lines...) Expand 10 before | Expand all | Expand 10 after
424 * @type {number} 425 * @type {number}
425 */ 426 */
426 chrome.automation.AutomationNode.prototype.textSelStart; 427 chrome.automation.AutomationNode.prototype.textSelStart;
427 428
428 429
429 /** 430 /**
430 * @type {number} 431 * @type {number}
431 */ 432 */
432 chrome.automation.AutomationNode.prototype.textSelEnd; 433 chrome.automation.AutomationNode.prototype.textSelEnd;
433 434
435 /**
436 * @type {string}
437 */
438 chrome.automation.AutomationNode.prototype.imageDataUrl;
434 439
435 /** 440 /**
436 * @type {Array<number>} 441 * @type {Array<number>}
437 */ 442 */
438 chrome.automation.AutomationNode.prototype.wordStarts; 443 chrome.automation.AutomationNode.prototype.wordStarts;
439 444
440 445
441 /** 446 /**
442 * @type {Array<number>} 447 * @type {Array<number>}
443 */ 448 */
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
542 547
543 548
544 chrome.automation.AutomationNode.prototype.showContextMenu = function() {}; 549 chrome.automation.AutomationNode.prototype.showContextMenu = function() {};
545 550
546 551
547 chrome.automation.AutomationNode.prototype 552 chrome.automation.AutomationNode.prototype
548 .setSequentialFocusNavigationStartingPoint = function() {}; 553 .setSequentialFocusNavigationStartingPoint = function() {};
549 554
550 555
551 /** 556 /**
557 * @param {number} width
558 * @param {number} height
559 */
560 chrome.automation.AutomationNode.prototype.getImageData =
561 function(width, height) {};
Dan Beam 2016/12/15 00:34:02 if this were run by the script on the top of this
562
563 /**
552 * @param {number} start 564 * @param {number} start
553 * @param {number} end 565 * @param {number} end
554 */ 566 */
555 chrome.automation.AutomationNode.prototype.setSelection = 567 chrome.automation.AutomationNode.prototype.setSelection =
556 function(start, end) {}; 568 function(start, end) {};
557 569
558 /** @type {string} */ 570 /** @type {string} */
559 chrome.automation.AutomationNode.prototype.containerLiveStatus; 571 chrome.automation.AutomationNode.prototype.containerLiveStatus;
560 572
561 /** @type {string} */ 573 /** @type {string} */
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
688 700
689 /** 701 /**
690 * @type {chrome.automation.AutomationNode} 702 * @type {chrome.automation.AutomationNode}
691 */ 703 */
692 chrome.automation.AutomationRootNode.prototype.focusObject; 704 chrome.automation.AutomationRootNode.prototype.focusObject;
693 705
694 /** 706 /**
695 * @type {number} 707 * @type {number}
696 */ 708 */
697 chrome.automation.AutomationRootNode.prototype.focusOffset; 709 chrome.automation.AutomationRootNode.prototype.focusOffset;
OLDNEW
« no previous file with comments | « chrome/browser/resources/chromeos/chromevox/host/interface/braille_interface.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698