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

Unified Diff: Source/modules/accessibility/AXObjectCacheImpl.h

Issue 1034493005: Fire AX notifications on list box options. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@menu_list_more
Patch Set: Rebase Created 5 years, 9 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: Source/modules/accessibility/AXObjectCacheImpl.h
diff --git a/Source/modules/accessibility/AXObjectCacheImpl.h b/Source/modules/accessibility/AXObjectCacheImpl.h
index 5b49a9bc40c835fb43f63fe5a2051170b5a80300..21c3b65db0fe6caf22d80803f0e5eb0aef9e7ee4 100644
--- a/Source/modules/accessibility/AXObjectCacheImpl.h
+++ b/Source/modules/accessibility/AXObjectCacheImpl.h
@@ -67,7 +67,9 @@ public:
virtual void childrenChanged(Node*) override;
virtual void childrenChanged(LayoutObject*) override;
virtual void checkedStateChanged(Node*) override;
- virtual void selectedChildrenChanged(Node*) override;
+ virtual void listboxOptionStateChanged(HTMLOptionElement*);
+ virtual void listboxSelectedChildrenChanged(HTMLSelectElement*);
+ virtual void listboxActiveIndexChanged(HTMLSelectElement*);
virtual void remove(LayoutObject*) override;
virtual void remove(Node*) override;
@@ -133,11 +135,11 @@ public:
void remove(AbstractInlineTextBox*);
void childrenChanged(AXObject*);
- void selectedChildrenChanged(LayoutObject*);
void handleActiveDescendantChanged(Node*);
void handleAriaRoleChanged(Node*);
void handleAriaExpandedChange(Node*);
+ void handleAriaSelectedChanged(Node*);
void recomputeIsIgnored(LayoutObject*);

Powered by Google App Engine
This is Rietveld 408576698