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 };
185 void postNotification(RenderObject*, AXNotification, bool postToElement, PostType = PostAsynchronously);
186 void postNotification(Node*, AXNotification, bool postToElement, PostType = PostAsynchronously);
187 void postNotification(AXObject*, Document*, AXNotification, bool postToElement, PostType = PostAsynchronously);
AXObjectCache.cpp 707 void AXObjectCache::postNotification(RenderObject* renderer, AXNotification notification, bool postToElement, PostType postType)
725 postNotification(object.get(), &renderer->document(), notification, postToElement, postType);
728 void AXObjectCache::postNotification(Node* node, AXNotification notification, bool postToElement, PostType postType)
746 postNotification(object.get(), &node->document(), notification, postToElement, postType);
749 void AXObjectCache::postNotification(AXObject* object, Document* document, AXNotification notification, bool postToElement, PostType postType)
762 if (postType == PostAsynchronously) {

Completed in 24 milliseconds