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

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

Issue 2080573003: Track all changed nodes during an update (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Make suggested change. Created 4 years, 3 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 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 2824e6f78d598b382656a37f139ea9889773c6d1..40be1a4713f4a1ccb6d2bb712afc0e9fe5faa816 100644
--- a/chrome/browser/resources/chromeos/chromevox/common/chrome_extension_externs.js
+++ b/chrome/browser/resources/chromeos/chromevox/common/chrome_extension_externs.js
@@ -287,8 +287,9 @@ chrome.automation.FindParams;
* @constructor
* @param {chrome.automation.EventType} type
* @param {chrome.automation.AutomationNode} node
+ * @param {string} eventFrom
*/
-chrome.automation.AutomationEvent = function(type, node) {};
+chrome.automation.AutomationEvent = function(type, node, eventFrom) {};
/**
* @type {!chrome.automation.AutomationNode}
@@ -300,6 +301,11 @@ chrome.automation.AutomationEvent.prototype.target;
*/
chrome.automation.AutomationEvent.prototype.type;
+/**
+ * @type {string}
+ */
+chrome.automation.AutomationEvent.prototype.eventFrom;
+
chrome.automation.AutomationEvent.prototype.stopPropagation = function() {};
/**

Powered by Google App Engine
This is Rietveld 408576698