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 78 enum PostType { PostSynchronously, PostAsynchronously };
193 void postNotification(RenderObject*, AXNotification, bool postToElement, PostType = PostAsynchronously);
194 void postNotification(Node*, AXNotification, bool postToElement, PostType = PostAsynchronously);
195 void postNotification(AXObject*, Document*, AXNotification, bool postToElement, PostType = PostAsynchronously);
AXObjectCache.cpp 726 void AXObjectCache::postNotification(RenderObject* renderer, AXNotification notification, bool postToElement, PostType postType)
744 postNotification(object.get(), &renderer->document(), notification, postToElement, postType);
747 void AXObjectCache::postNotification(Node* node, AXNotification notification, bool postToElement, PostType postType)
765 postNotification(object.get(), &node->document(), notification, postToElement, postType);
768 void AXObjectCache::postNotification(AXObject* object, Document* document, AXNotification notification, bool postToElement, PostType postType)
781 if (postType == PostAsynchronously) {

Completed in 42 milliseconds