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

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

Issue 1014573010: Get rid of postToElement argument for accessibility notifications. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@postnotification_1
Patch Set: Rebaseline test 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 f71f6529fbe45292fb2677eb60854958bcf7cd52..637ea66e54ef99a6cf0d656ff15631e22d8ae360 100644
--- a/Source/modules/accessibility/AXObjectCacheImpl.h
+++ b/Source/modules/accessibility/AXObjectCacheImpl.h
@@ -134,6 +134,7 @@ public:
void childrenChanged(AXObject*);
void selectedChildrenChanged(LayoutObject*);
+ void selectedChildrenChanged(AXObject*);
void handleActiveDescendantChanged(Node*);
void handleAriaRoleChanged(Node*);
@@ -153,9 +154,9 @@ public:
// as long as the modification count hasn't changed.
int modificationCount() const { return m_modificationCount; }
- void postNotification(LayoutObject*, AXNotification, bool postToElement);
- void postNotification(Node*, AXNotification, bool postToElement);
- void postNotification(AXObject*, AXNotification, bool postToElement);
+ void postNotification(LayoutObject*, AXNotification);
+ void postNotification(Node*, AXNotification);
+ void postNotification(AXObject*, AXNotification);
protected:
void postPlatformNotification(AXObject*, AXNotification);
« 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