Chromium Code Reviews| Index: chrome/browser/resources/chromeos/chromevox/common/chrome_extension_externs.js |
| diff --git a/chrome/browser/resources/chromeos/chromevox/common/chrome_extension_externs.js b/chrome/browser/resources/chromeos/chromevox/common/chrome_extension_externs.js |
| index eaa2d1bc4f6b909b21bcdf3198e4222e29b66f58..2a671e7d7617dd2abef8b479bc763b18de7365b8 100644 |
| --- a/chrome/browser/resources/chromeos/chromevox/common/chrome_extension_externs.js |
| +++ b/chrome/browser/resources/chromeos/chromevox/common/chrome_extension_externs.js |
| @@ -435,6 +435,15 @@ chrome.automation.AutomationNode.prototype.location; |
| /** |
| + * @param {number} start |
| + * @param {number} end |
| + * @return {{top: number, left: number, height: number, width: number}} |
|
Peter Lundblad
2015/11/20 11:15:03
Return value should be {({top: number, left: numbe
dmazzoni
2015/11/20 23:35:14
Done.
|
| + */ |
| +chrome.automation.AutomationNode.prototype.boundsForRange = |
| + function(start, end) {}; |
| + |
| + |
| +/** |
| * @param {chrome.automation.EventType} eventType |
| * @param {function(!chrome.automation.AutomationEvent) : void} callback |
| * @param {boolean} capture |