2 * Copyright (C) 2013 Google Inc. All rights reserved.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer
12 * in the documentation and/or other materials provided with the
14 * 3. Neither the name of Google Inc. nor the names of its contributors
15 * may be used to endorse or promote products derived from this
16 * software without specific prior written permission.
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 #include "core/dom/custom/CustomElementCallbackInvocation.h"
34 #include "core/dom/Document.h"
35 #include "core/dom/Element.h"
36 #include "core/dom/custom/CustomElementScheduler.h"
40 class AttachedDetachedInvocation final
: public CustomElementCallbackInvocation
{
42 AttachedDetachedInvocation(PassRefPtrWillBeRawPtr
<CustomElementLifecycleCallbacks
>, CustomElementLifecycleCallbacks::CallbackType which
);
45 void dispatch(Element
*) override
;
47 CustomElementLifecycleCallbacks::CallbackType m_which
;
50 AttachedDetachedInvocation::AttachedDetachedInvocation(PassRefPtrWillBeRawPtr
<CustomElementLifecycleCallbacks
> callbacks
, CustomElementLifecycleCallbacks::CallbackType which
)
51 : CustomElementCallbackInvocation(callbacks
)
54 ASSERT(m_which
== CustomElementLifecycleCallbacks::AttachedCallback
|| m_which
== CustomElementLifecycleCallbacks::DetachedCallback
);
57 void AttachedDetachedInvocation::dispatch(Element
* element
)
60 case CustomElementLifecycleCallbacks::AttachedCallback
:
61 callbacks()->attached(element
);
63 case CustomElementLifecycleCallbacks::DetachedCallback
:
64 callbacks()->detached(element
);
71 class AttributeChangedInvocation final
: public CustomElementCallbackInvocation
{
73 AttributeChangedInvocation(PassRefPtrWillBeRawPtr
<CustomElementLifecycleCallbacks
>, const AtomicString
& name
, const AtomicString
& oldValue
, const AtomicString
& newValue
);
76 void dispatch(Element
*) override
;
79 AtomicString m_oldValue
;
80 AtomicString m_newValue
;
83 AttributeChangedInvocation::AttributeChangedInvocation(PassRefPtrWillBeRawPtr
<CustomElementLifecycleCallbacks
> callbacks
, const AtomicString
& name
, const AtomicString
& oldValue
, const AtomicString
& newValue
)
84 : CustomElementCallbackInvocation(callbacks
)
86 , m_oldValue(oldValue
)
87 , m_newValue(newValue
)
91 void AttributeChangedInvocation::dispatch(Element
* element
)
93 callbacks()->attributeChanged(element
, m_name
, m_oldValue
, m_newValue
);
96 class CreatedInvocation final
: public CustomElementCallbackInvocation
{
98 explicit CreatedInvocation(PassRefPtrWillBeRawPtr
<CustomElementLifecycleCallbacks
> callbacks
)
99 : CustomElementCallbackInvocation(callbacks
)
104 void dispatch(Element
*) override
;
105 bool isCreatedCallback() const override
{ return true; }
108 void CreatedInvocation::dispatch(Element
* element
)
110 if (element
->inDocument() && element
->document().domWindow())
111 CustomElementScheduler::scheduleCallback(callbacks(), element
, CustomElementLifecycleCallbacks::AttachedCallback
);
112 callbacks()->created(element
);
115 PassOwnPtrWillBeRawPtr
<CustomElementCallbackInvocation
> CustomElementCallbackInvocation::createInvocation(PassRefPtrWillBeRawPtr
<CustomElementLifecycleCallbacks
> callbacks
, CustomElementLifecycleCallbacks::CallbackType which
)
118 case CustomElementLifecycleCallbacks::CreatedCallback
:
119 return adoptPtrWillBeNoop(new CreatedInvocation(callbacks
));
121 case CustomElementLifecycleCallbacks::AttachedCallback
:
122 case CustomElementLifecycleCallbacks::DetachedCallback
:
123 return adoptPtrWillBeNoop(new AttachedDetachedInvocation(callbacks
, which
));
125 ASSERT_NOT_REACHED();
130 PassOwnPtrWillBeRawPtr
<CustomElementCallbackInvocation
> CustomElementCallbackInvocation::createAttributeChangedInvocation(PassRefPtrWillBeRawPtr
<CustomElementLifecycleCallbacks
> callbacks
, const AtomicString
& name
, const AtomicString
& oldValue
, const AtomicString
& newValue
)
132 return adoptPtrWillBeNoop(new AttributeChangedInvocation(callbacks
, name
, oldValue
, newValue
));
135 DEFINE_TRACE(CustomElementCallbackInvocation
)
137 visitor
->trace(m_callbacks
);
138 CustomElementProcessingStep::trace(visitor
);