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

Unified Diff: Source/core/dom/AXObjectCache.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/core/dom/AXObjectCache.h
diff --git a/Source/core/dom/AXObjectCache.h b/Source/core/dom/AXObjectCache.h
index 988f76fa5c654769c811b1473d442c279165dbec..06afe439f4970a378199cf4155a6f5d20d6ae483 100644
--- a/Source/core/dom/AXObjectCache.h
+++ b/Source/core/dom/AXObjectCache.h
@@ -34,6 +34,8 @@ typedef unsigned AXID;
namespace blink {
class AXObject;
class FrameView;
+class HTMLOptionElement;
+class HTMLSelectElement;
class LayoutMenuList;
class Page;
class Widget;
@@ -83,7 +85,9 @@ public:
virtual void childrenChanged(Node*) = 0;
virtual void childrenChanged(LayoutObject*) = 0;
virtual void checkedStateChanged(Node*) = 0;
- virtual void selectedChildrenChanged(Node*) = 0;
+ virtual void listboxOptionStateChanged(HTMLOptionElement*) = 0;
+ virtual void listboxSelectedChildrenChanged(HTMLSelectElement*) = 0;
+ virtual void listboxActiveIndexChanged(HTMLSelectElement*) = 0;
virtual void remove(LayoutObject*) = 0;
virtual void remove(Node*) = 0;

Powered by Google App Engine
This is Rietveld 408576698