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

Unified Diff: chrome/browser/resources/chromeos/chromevox/cvox2/background/desktop_automation_handler.js

Issue 2290763002: Sync up two accessibility enum files: ax_enums.idl and automation.idl (Closed)
Patch Set: Created 4 years, 4 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/cvox2/background/desktop_automation_handler.js
diff --git a/chrome/browser/resources/chromeos/chromevox/cvox2/background/desktop_automation_handler.js b/chrome/browser/resources/chromeos/chromevox/cvox2/background/desktop_automation_handler.js
index 0b1380b8a34ebc8876addab98f770a5f94da5093..4c3e3d42c0f0ba27e40f7fc29a75fa8364a1fe45 100644
--- a/chrome/browser/resources/chromeos/chromevox/cvox2/background/desktop_automation_handler.js
+++ b/chrome/browser/resources/chromeos/chromevox/cvox2/background/desktop_automation_handler.js
@@ -46,14 +46,19 @@ DesktopAutomationHandler = function(node) {
this.addListener_(e.activedescendantchanged, this.onActiveDescendantChanged);
this.addListener_(e.alert, this.onAlert);
this.addListener_(e.ariaAttributeChanged, this.onEventIfInRange);
+ this.addListener_(e.autocorrectionOccured, this.onEventIfInRange);
this.addListener_(e.checkedStateChanged, this.onCheckedStateChanged);
this.addListener_(e.childrenChanged, this.onActiveDescendantChanged);
+ this.addListener_(e.expandedChanged, this.onEventIfInRange);
this.addListener_(e.focus, this.onFocus);
this.addListener_(e.hover, this.onHover);
+ this.addListener_(e.invalidStatusChanged, this.onEventIfInRange);
this.addListener_(e.loadComplete, this.onLoadComplete);
this.addListener_(e.menuEnd, this.onMenuEnd);
this.addListener_(e.menuListItemSelected, this.onEventIfSelected);
this.addListener_(e.menuStart, this.onMenuStart);
+ this.addListener_(e.rowCollapsed, this.onEventIfInRange);
+ this.addListener_(e.rowExpanded, this.onEventIfInRange);
this.addListener_(e.scrollPositionChanged, this.onScrollPositionChanged);
this.addListener_(e.selection, this.onSelection);
this.addListener_(e.textChanged, this.onTextChanged);

Powered by Google App Engine
This is Rietveld 408576698