HomeSort by relevance Sort by last modified time
    Searched refs:PostType (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXObjectCache.h 73 enum PostType { PostSynchronously, PostAsynchronously };
174 void postNotification(RenderObject*, AXNotification, bool postToElement, PostType = PostAsynchronously);
175 void postNotification(Node*, AXNotification, bool postToElement, PostType = PostAsynchronously);
176 void postNotification(AccessibilityObject*, Document*, AXNotification, bool postToElement, PostType = PostAsynchronously);
267 inline void AXObjectCache::postNotification(AccessibilityObject*, Document*, AXNotification, bool, PostType) { }
268 inline void AXObjectCache::postNotification(RenderObject*, AXNotification, bool, PostType) { }
269 inline void AXObjectCache::postNotification(Node*, AXNotification, bool, PostType) { }
AXObjectCache.cpp 649 void AXObjectCache::postNotification(RenderObject* renderer, AXNotification notification, bool postToElement, PostType postType)
667 postNotification(object.get(), renderer->document(), notification, postToElement, postType);
670 void AXObjectCache::postNotification(Node* node, AXNotification notification, bool postToElement, PostType postType)
688 postNotification(object.get(), node->document(), notification, postToElement, postType);
691 void AXObjectCache::postNotification(AccessibilityObject* object, Document* document, AXNotification notification, bool postToElement, PostType postType)
704 if (postType == PostAsynchronously) {

Completed in 28 milliseconds