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

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

Issue 2301833005: Get rid of AX_LINE_BREAKS attribute to improve performance. (Closed)
Patch Set: Re-worded comment. Created 4 years, 2 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
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 594 matching lines...) Expand 10 before | Expand all | Expand 10 after
605 chrome.automation.anchorOffset; 605 chrome.automation.anchorOffset;
606 606
607 /** 607 /**
608 * @type {(chrome.automation.AutomationNode|undefined)} 608 * @type {(chrome.automation.AutomationNode|undefined)}
609 */ 609 */
610 chrome.automation.AutomationNode.prototype.focusObject; 610 chrome.automation.AutomationNode.prototype.focusObject;
611 611
612 /** 612 /**
613 * @type {(Array<number>|undefined)} 613 * @type {(Array<number>|undefined)}
614 */ 614 */
615 chrome.automation.AutomationNode.prototype.lineBreaks; 615 chrome.automation.AutomationNode.prototype.lineStartOffsets;
616 616
617 /** 617 /**
618 * @type {(number|undefined)} 618 * @type {(number|undefined)}
619 */ 619 */
620 chrome.automation.focusOffset; 620 chrome.automation.focusOffset;
621 621
622 /** 622 /**
623 * @type {(chrome.automation.AutomationNode|undefined)} 623 * @type {(chrome.automation.AutomationNode|undefined)}
624 */ 624 */
625 chrome.automation.AutomationNode.prototype.activeDescendant; 625 chrome.automation.AutomationNode.prototype.activeDescendant;
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
670 */ 670 */
671 chrome.automation.AutomationRootNode.prototype.focusObject; 671 chrome.automation.AutomationRootNode.prototype.focusObject;
672 672
673 /** 673 /**
674 * @type {number} 674 * @type {number}
675 */ 675 */
676 chrome.automation.AutomationRootNode.prototype.focusOffset; 676 chrome.automation.AutomationRootNode.prototype.focusOffset;
677 677
678 /** @type {function() : !Object} */ 678 /** @type {function() : !Object} */
679 chrome.app.getDetails; 679 chrome.app.getDetails;
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698