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

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: Update expectations for other test that failed 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
« no previous file with comments | « Source/modules/accessibility/AXObject.h ('k') | Source/modules/accessibility/AXObjectCacheImpl.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/accessibility/AXObjectCacheImpl.h
diff --git a/Source/modules/accessibility/AXObjectCacheImpl.h b/Source/modules/accessibility/AXObjectCacheImpl.h
index ecaa818ceb1e3ec9c63a6599824818a2d57fdc21..8af261ddd2f0ba1d2049d7650ebc5e0540625d45 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;
@@ -135,12 +137,11 @@ public:
void remove(AbstractInlineTextBox*);
void childrenChanged(AXObject*);
- void selectedChildrenChanged(LayoutObject*);
- void selectedChildrenChanged(AXObject*);
void handleActiveDescendantChanged(Node*);
void handleAriaRoleChanged(Node*);
void handleAriaExpandedChange(Node*);
+ void handleAriaSelectedChanged(Node*);
void recomputeIsIgnored(LayoutObject*);
« no previous file with comments | « Source/modules/accessibility/AXObject.h ('k') | Source/modules/accessibility/AXObjectCacheImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698