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

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

Issue 1458723002: Finish implementing ChromeVox Next active indicator. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@load_key_map
Patch Set: Created 5 years, 1 month 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 side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698