| 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 19 matching lines...) Expand all Loading... |
| 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 | 36 |
| 37 namespace WebCore { | 37 namespace WebCore { |
| 38 | 38 |
| 39 #define TRY_TO_WRAP_WITH_INTERFACE(interfaceName) \ | 39 #define TRY_TO_WRAP_WITH_INTERFACE(interfaceName) \ |
| 40 if (eventNames().interfaceFor##interfaceName == desiredInterface) \ | 40 if (EventTargetNames::interfaceName == desiredInterface) \ |
| 41 return toV8(static_cast<interfaceName*>(impl), creationContext, isolate)
; | 41 return toV8(static_cast<interfaceName*>(impl), creationContext, isolate)
; |
| 42 | 42 |
| 43 v8::Handle<v8::Value> toV8(EventTarget* impl, v8::Handle<v8::Object> creationCon
text, v8::Isolate* isolate) | 43 v8::Handle<v8::Value> toV8(EventTarget* impl, v8::Handle<v8::Object> creationCon
text, v8::Isolate* isolate) |
| 44 { | 44 { |
| 45 if (!impl) | 45 if (!impl) |
| 46 return v8NullWithCheck(isolate); | 46 return v8NullWithCheck(isolate); |
| 47 | 47 |
| 48 AtomicString desiredInterface = impl->interfaceName(); | 48 AtomicString desiredInterface = impl->interfaceName(); |
| 49 EVENT_TARGET_INTERFACES_FOR_EACH(TRY_TO_WRAP_WITH_INTERFACE) | 49 EVENT_TARGET_INTERFACES_FOR_EACH(TRY_TO_WRAP_WITH_INTERFACE) |
| 50 | 50 |
| 51 ASSERT_NOT_REACHED(); | 51 ASSERT_NOT_REACHED(); |
| 52 return v8Undefined(); | 52 return v8Undefined(); |
| 53 } | 53 } |
| 54 | 54 |
| 55 #undef TRY_TO_WRAP_WITH_INTERFACE | 55 #undef TRY_TO_WRAP_WITH_INTERFACE |
| 56 | 56 |
| 57 } // namespace WebCore | 57 } // namespace WebCore |
| OLD | NEW |