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

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

Issue 1457683009: Complete live region support in ChromeVox Next. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
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..e27caeab80413c4628be570aec35f97b85e17a72 100644
--- a/chrome/browser/resources/chromeos/chromevox/common/chrome_extension_externs.js
+++ b/chrome/browser/resources/chromeos/chromevox/common/chrome_extension_externs.js
@@ -309,6 +309,13 @@ chrome.automation.addTreeChangeObserver = function(observer) {};
*/
chrome.automation.removeTreeChangeObserver = function(observer) {};
+/**
+ * Set the type of tree change events you want to receive when
Peter Lundblad 2015/11/20 13:42:58 Did you autogenerate this or can you leave out the
dmazzoni 2015/11/23 20:16:50 I deleted the redundant documentation from this an
+ * calling addTreeChangeObserver.
+ * @param {string} mask The new mask.
+ */
+chrome.automation.setTreeChangeObserverMask = function(mask) {};
David Tseng 2015/11/24 18:46:30 Can we get a more specific type for mask?
+
//
// End auto generated externs; do not edit.
//
@@ -509,6 +516,18 @@ chrome.automation.AutomationNode.prototype.containerLiveAtomic;
/** @type {boolean} */
chrome.automation.AutomationNode.prototype.containerLiveBusy;
+/** @type {string} */
+chrome.automation.AutomationNode.prototype.liveStatus;
+
+/** @type {string} */
+chrome.automation.AutomationNode.prototype.liveRelevant;
+
+/** @type {boolean} */
+chrome.automation.AutomationNode.prototype.liveAtomic;
+
+/** @type {boolean} */
+chrome.automation.AutomationNode.prototype.liveBusy;
+
/**
* @param {Object} findParams

Powered by Google App Engine
This is Rietveld 408576698