| Index: Source/core/accessibility/AXObjectCache.h
|
| diff --git a/Source/core/accessibility/AXObjectCache.h b/Source/core/accessibility/AXObjectCache.h
|
| index 507899213b1d8a7f9d0c2977e082b86a7ae022e3..9a13a55baf4df0786823e6fb2d1aedfeb9b68c9c 100644
|
| --- a/Source/core/accessibility/AXObjectCache.h
|
| +++ b/Source/core/accessibility/AXObjectCache.h
|
| @@ -82,7 +82,7 @@ public:
|
|
|
| // Returns the root object for the entire document.
|
| AccessibilityObject* rootObject();
|
| -
|
| +
|
| // For AX objects with elements that back them.
|
| AccessibilityObject* getOrCreate(RenderObject*);
|
| AccessibilityObject* getOrCreate(Widget*);
|
| @@ -90,12 +90,12 @@ public:
|
|
|
| // used for objects without backing elements
|
| AccessibilityObject* getOrCreate(AccessibilityRole);
|
| -
|
| +
|
| // will only return the AccessibilityObject if it already exists
|
| AccessibilityObject* get(RenderObject*);
|
| AccessibilityObject* get(Widget*);
|
| AccessibilityObject* get(Node*);
|
| -
|
| +
|
| void remove(RenderObject*);
|
| void remove(Node*);
|
| void remove(Widget*);
|
| @@ -219,22 +219,22 @@ private:
|
| HashSet<Node*> m_textMarkerNodes;
|
| OwnPtr<AXComputedObjectAttributeCache> m_computedObjectAttributeCache;
|
| static bool gAccessibilityEnabled;
|
| -
|
| +
|
| HashSet<AXID> m_idsInUse;
|
| -
|
| +
|
| Timer<AXObjectCache> m_notificationPostTimer;
|
| Vector<pair<RefPtr<AccessibilityObject>, AXNotification> > m_notificationsToPost;
|
| void notificationPostTimerFired(Timer<AXObjectCache>*);
|
| -
|
| +
|
| static AccessibilityObject* focusedImageMapUIElement(HTMLAreaElement*);
|
| -
|
| +
|
| AXID getAXID(AccessibilityObject*);
|
| };
|
|
|
| bool nodeHasRole(Node*, const String& role);
|
| // This will let you know if aria-hidden was explicitly set to false.
|
| bool isNodeAriaVisible(Node*);
|
| -
|
| +
|
| #if !HAVE(ACCESSIBILITY)
|
| inline AccessibilityObjectInclusion AXComputedObjectAttributeCache::getIgnored(AXID) const { return DefaultBehavior; }
|
| inline void AXComputedObjectAttributeCache::setIgnored(AXID, AccessibilityObjectInclusion) { }
|
|
|