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 77 enum PostType { PostSynchronously, PostAsynchronously };
194 void postNotification(RenderObject*, AXNotification, bool postToElement, PostType = PostAsynchronously);
195 void postNotification(Node*, AXNotification, bool postToElement, PostType = PostAsynchronously);
196 void postNotification(AXObject*, Document*, AXNotification, bool postToElement, PostType = PostAsynchronously);
AXObjectCache.cpp 728 void AXObjectCache::postNotification(RenderObject* renderer, AXNotification notification, bool postToElement, PostType postType)
746 postNotification(object.get(), &renderer->document(), notification, postToElement, postType);
749 void AXObjectCache::postNotification(Node* node, AXNotification notification, bool postToElement, PostType postType)
767 postNotification(object.get(), &node->document(), notification, postToElement, postType);
770 void AXObjectCache::postNotification(AXObject* object, Document* document, AXNotification notification, bool postToElement, PostType postType)
783 if (postType == PostAsynchronously) {

Completed in 36 milliseconds