Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(56)

Side by Side Diff: sky/engine/core/dom/custom/CustomElementCallbackInvocation.cpp

Issue 950523002: Delete sky/engine/core/dom/custom (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 *
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
13 * distribution.
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.
17 *
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.
29 */
30
31 #include "sky/engine/config.h"
32 #include "sky/engine/core/dom/custom/CustomElementCallbackInvocation.h"
33
34 #include "sky/engine/core/dom/Document.h"
35 #include "sky/engine/core/dom/Element.h"
36 #include "sky/engine/core/dom/custom/CustomElementScheduler.h"
37
38 namespace blink {
39
40 class AttachedDetachedInvocation : public CustomElementCallbackInvocation {
41 public:
42 AttachedDetachedInvocation(PassRefPtr<CustomElementLifecycleCallbacks>, Cust omElementLifecycleCallbacks::CallbackType which);
43
44 private:
45 virtual void dispatch(Element*) override;
46
47 CustomElementLifecycleCallbacks::CallbackType m_which;
48 };
49
50 AttachedDetachedInvocation::AttachedDetachedInvocation(PassRefPtr<CustomElementL ifecycleCallbacks> callbacks, CustomElementLifecycleCallbacks::CallbackType whic h)
51 : CustomElementCallbackInvocation(callbacks)
52 , m_which(which)
53 {
54 ASSERT(m_which == CustomElementLifecycleCallbacks::AttachedCallback || m_whi ch == CustomElementLifecycleCallbacks::DetachedCallback);
55 }
56
57 void AttachedDetachedInvocation::dispatch(Element* element)
58 {
59 switch (m_which) {
60 case CustomElementLifecycleCallbacks::AttachedCallback:
61 callbacks()->attached(element);
62 break;
63 case CustomElementLifecycleCallbacks::DetachedCallback:
64 callbacks()->detached(element);
65 break;
66 default:
67 ASSERT_NOT_REACHED();
68 }
69 }
70
71 class AttributeChangedInvocation : public CustomElementCallbackInvocation {
72 public:
73 AttributeChangedInvocation(PassRefPtr<CustomElementLifecycleCallbacks>, cons t AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue );
74
75 private:
76 virtual void dispatch(Element*) override;
77
78 AtomicString m_name;
79 AtomicString m_oldValue;
80 AtomicString m_newValue;
81 };
82
83 AttributeChangedInvocation::AttributeChangedInvocation(PassRefPtr<CustomElementL ifecycleCallbacks> callbacks, const AtomicString& name, const AtomicString& oldV alue, const AtomicString& newValue)
84 : CustomElementCallbackInvocation(callbacks)
85 , m_name(name)
86 , m_oldValue(oldValue)
87 , m_newValue(newValue)
88 {
89 }
90
91 void AttributeChangedInvocation::dispatch(Element* element)
92 {
93 callbacks()->attributeChanged(element, m_name, m_oldValue, m_newValue);
94 }
95
96 class CreatedInvocation : public CustomElementCallbackInvocation {
97 public:
98 CreatedInvocation(PassRefPtr<CustomElementLifecycleCallbacks> callbacks)
99 : CustomElementCallbackInvocation(callbacks)
100 {
101 }
102
103 private:
104 virtual void dispatch(Element*) override;
105 virtual bool isCreated() const override { return true; }
106 };
107
108 void CreatedInvocation::dispatch(Element* element)
109 {
110 if (element->inDocument() && element->document().domWindow())
111 CustomElementScheduler::scheduleCallback(callbacks(), element, CustomEle mentLifecycleCallbacks::AttachedCallback);
112 callbacks()->created(element);
113 }
114
115 PassOwnPtr<CustomElementCallbackInvocation> CustomElementCallbackInvocation::cre ateInvocation(PassRefPtr<CustomElementLifecycleCallbacks> callbacks, CustomEleme ntLifecycleCallbacks::CallbackType which)
116 {
117 switch (which) {
118 case CustomElementLifecycleCallbacks::CreatedCallback:
119 return adoptPtr(new CreatedInvocation(callbacks));
120
121 case CustomElementLifecycleCallbacks::AttachedCallback:
122 case CustomElementLifecycleCallbacks::DetachedCallback:
123 return adoptPtr(new AttachedDetachedInvocation(callbacks, which));
124 default:
125 ASSERT_NOT_REACHED();
126 return PassOwnPtr<CustomElementCallbackInvocation>();
127 }
128 }
129
130 PassOwnPtr<CustomElementCallbackInvocation> CustomElementCallbackInvocation::cre ateAttributeChangedInvocation(PassRefPtr<CustomElementLifecycleCallbacks> callba cks, const AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue)
131 {
132 return adoptPtr(new AttributeChangedInvocation(callbacks, name, oldValue, ne wValue));
133 }
134
135 } // namespace blink
OLDNEW
« no previous file with comments | « sky/engine/core/dom/custom/CustomElementCallbackInvocation.h ('k') | sky/engine/core/dom/custom/CustomElementCallbackQueue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698