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

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: 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 f71f6529fbe45292fb2677eb60854958bcf7cd52..09caa2a78105e46bbffabd84b3de64134124a5b3 100644
--- a/Source/modules/accessibility/AXObjectCacheImpl.h
+++ b/Source/modules/accessibility/AXObjectCacheImpl.h
@@ -153,9 +153,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);

Powered by Google App Engine
This is Rietveld 408576698