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

Side by Side Diff: Source/bindings/core/v8/custom/V8EventTargetCustom.cpp

Issue 1227823009: Move add/removeEventListener() to custom bindings (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | Source/core/events/EventTarget.idl » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 13 matching lines...) Expand all
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 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. 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */ 29 */
30 30
31 #include "config.h" 31 #include "config.h"
32 #include "bindings/core/v8/V8EventTarget.h" 32 #include "bindings/core/v8/V8EventTarget.h"
33 33
34 #include "bindings/core/v8/V8Window.h" 34 #include "bindings/core/v8/BindingSecurity.h"
35 #include "bindings/core/v8/V8EventListenerList.h"
36 #include "core/frame/LocalDOMWindow.h"
35 37
36 namespace blink { 38 namespace blink {
37 39
38 void V8EventTarget::addEventListenerMethodEpilogueCustom(const v8::FunctionCallb ackInfo<v8::Value>& info, EventTarget* impl) 40 static void addEventListenerMethodEpilogue(const v8::FunctionCallbackInfo<v8::Va lue>& info, EventTarget* impl)
39 { 41 {
40 if (info.Length() >= 2 && info[1]->IsObject() && !impl->toNode()) 42 if (info.Length() >= 2 && info[1]->IsObject() && !impl->toNode())
41 addHiddenValueToArray(info.GetIsolate(), info.Holder(), info[1], V8Event Target::eventListenerCacheIndex); 43 addHiddenValueToArray(info.GetIsolate(), info.Holder(), info[1], V8Event Target::eventListenerCacheIndex);
42 } 44 }
43 45
44 void V8EventTarget::removeEventListenerMethodEpilogueCustom(const v8::FunctionCa llbackInfo<v8::Value>& info, EventTarget* impl) 46 void V8EventTarget::addEventListenerMethodCustom(const v8::FunctionCallbackInfo< v8::Value>& info)
47 {
48 ExceptionState exceptionState(ExceptionState::ExecutionContext, "addEventLis tener", "EventTarget", info.Holder(), info.GetIsolate());
49 EventTarget* impl = V8EventTarget::toImpl(info.Holder());
50 if (LocalDOMWindow* window = impl->toDOMWindow()) {
51 if (!BindingSecurity::shouldAllowAccessToFrame(info.GetIsolate(), window ->frame(), exceptionState)) {
52 exceptionState.throwIfNeeded();
53 return;
54 }
55 if (!window->document())
56 return;
57 }
58 V8StringResource<TreatNullAsNullString> type;
59 RefPtr<EventListener> listener;
60 bool capture;
61 {
62 if (UNLIKELY(info.Length() <= 0)) {
63 impl->addEventListener();
64 addEventListenerMethodEpilogue(info, impl);
65 return;
66 }
67 type = info[0];
68 if (!type.prepare())
69 return;
70 listener = V8EventListenerList::getEventListener(ScriptState::current(in fo.GetIsolate()), info[1], false, ListenerFindOrCreate);
71 if (UNLIKELY(info.Length() <= 2)) {
72 impl->addEventListener(type, listener);
73 addEventListenerMethodEpilogue(info, impl);
74 return;
75 }
76 capture = toBoolean(info.GetIsolate(), info[2], exceptionState);
77 if (exceptionState.throwIfNeeded())
78 return;
79 }
80 impl->addEventListener(type, listener, capture);
81 addEventListenerMethodEpilogue(info, impl);
82 }
83
84 static void removeEventListenerMethodEpilogue(const v8::FunctionCallbackInfo<v8: :Value>& info, EventTarget* impl)
45 { 85 {
46 if (info.Length() >= 2 && info[1]->IsObject() && !impl->toNode()) 86 if (info.Length() >= 2 && info[1]->IsObject() && !impl->toNode())
47 removeHiddenValueFromArray(info.GetIsolate(), info.Holder(), info[1], V8 EventTarget::eventListenerCacheIndex); 87 removeHiddenValueFromArray(info.GetIsolate(), info.Holder(), info[1], V8 EventTarget::eventListenerCacheIndex);
48 } 88 }
49 89
90 void V8EventTarget::removeEventListenerMethodCustom(const v8::FunctionCallbackIn fo<v8::Value>& info)
91 {
92 ExceptionState exceptionState(ExceptionState::ExecutionContext, "removeEvent Listener", "EventTarget", info.Holder(), info.GetIsolate());
93 EventTarget* impl = V8EventTarget::toImpl(info.Holder());
94 if (LocalDOMWindow* window = impl->toDOMWindow()) {
95 if (!BindingSecurity::shouldAllowAccessToFrame(info.GetIsolate(), window ->frame(), exceptionState)) {
96 exceptionState.throwIfNeeded();
97 return;
98 }
99 if (!window->document())
100 return;
101 }
102 V8StringResource<TreatNullAsNullString> type;
103 RefPtr<EventListener> listener;
104 bool capture;
105 {
106 if (UNLIKELY(info.Length() <= 0)) {
107 impl->removeEventListener();
108 removeEventListenerMethodEpilogue(info, impl);
109 return;
110 }
111 type = info[0];
112 if (!type.prepare())
113 return;
114 listener = V8EventListenerList::getEventListener(ScriptState::current(in fo.GetIsolate()), info[1], false, ListenerFindOnly);
115 if (UNLIKELY(info.Length() <= 2)) {
116 impl->removeEventListener(type, listener);
117 removeEventListenerMethodEpilogue(info, impl);
118 return;
119 }
120 capture = toBoolean(info.GetIsolate(), info[2], exceptionState);
121 if (exceptionState.throwIfNeeded())
122 return;
123 }
124 impl->removeEventListener(type, listener, capture);
125 removeEventListenerMethodEpilogue(info, impl);
126 }
127
50 } // namespace blink 128 } // namespace blink
OLDNEW
« no previous file with comments | « no previous file | Source/core/events/EventTarget.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698