Searched defs:MutationEvent (Results 1 - 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/dom/
H A DMutationEvent.cpp24 #include "MutationEvent.h"
28 MutationEvent::MutationEvent() function in class:WebCore::MutationEvent
33 MutationEvent::MutationEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<Node> relatedNode, function in class:WebCore::MutationEvent
45 MutationEvent::~MutationEvent()
49 void MutationEvent::initMutationEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<Node> relatedNode,
65 bool MutationEvent::isMutationEvent() const
H A DMutationEvent.h32 class MutationEvent : public Event { class in namespace:WebCore
34 virtual ~MutationEvent();
42 static PassRefPtr<MutationEvent> create()
44 return adoptRef(new MutationEvent);
47 static PassRefPtr<MutationEvent> create(const AtomicString& type, bool canBubble, PassRefPtr<Node> relatedNode = 0,
50 return adoptRef(new MutationEvent(type, canBubble, false, relatedNode, prevValue, newValue, attrName, attrChange));
66 MutationEvent();
67 MutationEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<Node> relatedNode,

Completed in 58 milliseconds