| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 4 * (C) 2001 Dirk Mueller (mueller@kde.org) | 4 * (C) 2001 Dirk Mueller (mueller@kde.org) |
| 5 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. | 5 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. |
| 6 * Copyright (C) 2006 Alexey Proskuryakov (ap@webkit.org) | 6 * Copyright (C) 2006 Alexey Proskuryakov (ap@webkit.org) |
| 7 * (C) 2007, 2008 Nikolas Zimmermann <zimmermann@kde.org> | 7 * (C) 2007, 2008 Nikolas Zimmermann <zimmermann@kde.org> |
| 8 * | 8 * |
| 9 * Redistribution and use in source and binary forms, with or without | 9 * Redistribution and use in source and binary forms, with or without |
| 10 * modification, are permitted provided that the following conditions | 10 * modification, are permitted provided that the following conditions |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 class NamedFlow; | 61 class NamedFlow; |
| 62 class Node; | 62 class Node; |
| 63 class Notification; | 63 class Notification; |
| 64 class SVGElementInstance; | 64 class SVGElementInstance; |
| 65 class ScriptExecutionContext; | 65 class ScriptExecutionContext; |
| 66 class ScriptProcessorNode; | 66 class ScriptProcessorNode; |
| 67 class SharedWorker; | 67 class SharedWorker; |
| 68 class SharedWorkerContext; | 68 class SharedWorkerContext; |
| 69 class TextTrack; | 69 class TextTrack; |
| 70 class TextTrackCue; | 70 class TextTrackCue; |
| 71 class WebKitMediaSource; | |
| 72 class WebKitSourceBufferList; | |
| 73 class WebSocket; | 71 class WebSocket; |
| 74 class Worker; | 72 class Worker; |
| 75 class XMLHttpRequest; | 73 class XMLHttpRequest; |
| 76 class XMLHttpRequestUpload; | 74 class XMLHttpRequestUpload; |
| 77 | 75 |
| 78 typedef int ExceptionCode; | 76 typedef int ExceptionCode; |
| 79 | 77 |
| 80 struct FiringEventIterator { | 78 struct FiringEventIterator { |
| 81 FiringEventIterator(const AtomicString& eventType, size_t& iterator, siz
e_t& end) | 79 FiringEventIterator(const AtomicString& eventType, size_t& iterator, siz
e_t& end) |
| 82 : eventType(eventType) | 80 : eventType(eventType) |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 192 { | 190 { |
| 193 EventTargetData* d = eventTargetData(); | 191 EventTargetData* d = eventTargetData(); |
| 194 if (!d) | 192 if (!d) |
| 195 return false; | 193 return false; |
| 196 return d->eventListenerMap.contains(eventType); | 194 return d->eventListenerMap.contains(eventType); |
| 197 } | 195 } |
| 198 | 196 |
| 199 } // namespace WebCore | 197 } // namespace WebCore |
| 200 | 198 |
| 201 #endif // EventTarget_h | 199 #endif // EventTarget_h |
| OLD | NEW |