Home | History | Annotate | Download | only in dom

Lines Matching refs:callbacks

41     CreatedInvocation(PassRefPtr<CustomElementLifecycleCallbacks> callbacks)
42 : CustomElementCallbackInvocation(callbacks)
53 CustomElementCallbackScheduler::scheduleEnteredDocumentCallback(callbacks(), element);
54 callbacks()->created(element);
67 EnteredLeftDocumentInvocation::EnteredLeftDocumentInvocation(PassRefPtr<CustomElementLifecycleCallbacks> callbacks, CustomElementLifecycleCallbacks::CallbackType which)
68 : CustomElementCallbackInvocation(callbacks)
78 callbacks()->enteredDocument(element);
81 callbacks()->leftDocument(element);
100 AttributeChangedInvocation::AttributeChangedInvocation(PassRefPtr<CustomElementLifecycleCallbacks> callbacks, const AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue)
101 : CustomElementCallbackInvocation(callbacks)
110 callbacks()->attributeChanged(element, m_name, m_oldValue, m_newValue);
113 PassOwnPtr<CustomElementCallbackInvocation> CustomElementCallbackInvocation::createInvocation(PassRefPtr<CustomElementLifecycleCallbacks> callbacks, CustomElementLifecycleCallbacks::CallbackType which)
117 return adoptPtr(new CreatedInvocation(callbacks));
121 return adoptPtr(new EnteredLeftDocumentInvocation(callbacks, which));
129 PassOwnPtr<CustomElementCallbackInvocation> CustomElementCallbackInvocation::createAttributeChangedInvocation(PassRefPtr<CustomElementLifecycleCallbacks> callbacks, const AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue)
131 return adoptPtr(new AttributeChangedInvocation(callbacks, name, oldValue, newValue));