OLD | NEW |
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 15 matching lines...) Expand all Loading... |
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 "V8EventTarget.h" | 32 #include "V8EventTarget.h" |
33 | 33 |
34 #include "EventTargetHeaders.h" | 34 #include "EventTargetHeaders.h" |
35 #include "EventTargetInterfaces.h" | 35 #include "EventTargetInterfaces.h" |
| 36 #include "EventTargetModulesHeaders.h" |
| 37 #include "EventTargetModulesInterfaces.h" |
36 | 38 |
37 namespace WebCore { | 39 namespace WebCore { |
38 | 40 |
39 #define TRY_TO_WRAP_WITH_INTERFACE(interfaceName) \ | 41 #define TRY_TO_WRAP_WITH_INTERFACE(interfaceName) \ |
40 if (EventTargetNames::interfaceName == desiredInterface) \ | 42 if (EventTargetNames::interfaceName == desiredInterface) \ |
41 return toV8(static_cast<interfaceName*>(impl), creationContext, isolate)
; | 43 return toV8(static_cast<interfaceName*>(impl), creationContext, isolate)
; |
42 | 44 |
43 v8::Handle<v8::Value> toV8(EventTarget* impl, v8::Handle<v8::Object> creationCon
text, v8::Isolate* isolate) | 45 v8::Handle<v8::Value> toV8(EventTarget* impl, v8::Handle<v8::Object> creationCon
text, v8::Isolate* isolate) |
44 { | 46 { |
45 if (!impl) | 47 if (!impl) |
46 return v8::Null(isolate); | 48 return v8::Null(isolate); |
47 | 49 |
48 AtomicString desiredInterface = impl->interfaceName(); | 50 AtomicString desiredInterface = impl->interfaceName(); |
49 EVENT_TARGET_INTERFACES_FOR_EACH(TRY_TO_WRAP_WITH_INTERFACE) | 51 EVENT_TARGET_INTERFACES_FOR_EACH(TRY_TO_WRAP_WITH_INTERFACE) |
| 52 EVENT_TARGET_MODULES_INTERFACES_FOR_EACH(TRY_TO_WRAP_WITH_INTERFACE) |
50 | 53 |
51 ASSERT_NOT_REACHED(); | 54 ASSERT_NOT_REACHED(); |
52 return v8Undefined(); | 55 return v8Undefined(); |
53 } | 56 } |
54 | 57 |
55 #undef TRY_TO_WRAP_WITH_INTERFACE | 58 #undef TRY_TO_WRAP_WITH_INTERFACE |
56 | 59 |
57 } // namespace WebCore | 60 } // namespace WebCore |
OLD | NEW |