| 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 20 matching lines...) Expand all Loading... |
| 31 | 31 |
| 32 #ifndef EventTarget_h | 32 #ifndef EventTarget_h |
| 33 #define EventTarget_h | 33 #define EventTarget_h |
| 34 | 34 |
| 35 #include "core/dom/EventListenerMap.h" | 35 #include "core/dom/EventListenerMap.h" |
| 36 #include "core/dom/EventNames.h" | 36 #include "core/dom/EventNames.h" |
| 37 #include "wtf/Forward.h" | 37 #include "wtf/Forward.h" |
| 38 | 38 |
| 39 namespace WebCore { | 39 namespace WebCore { |
| 40 | 40 |
| 41 class ApplicationCache; |
| 41 class AudioContext; | 42 class AudioContext; |
| 42 class DOMApplicationCache; | |
| 43 class DOMWindow; | 43 class DOMWindow; |
| 44 class DedicatedWorkerGlobalScope; | 44 class DedicatedWorkerGlobalScope; |
| 45 class Event; | 45 class Event; |
| 46 class EventListener; | 46 class EventListener; |
| 47 class EventSource; | 47 class EventSource; |
| 48 class ExceptionState; | 48 class ExceptionState; |
| 49 class FileReader; | 49 class FileReader; |
| 50 class FileWriter; | 50 class FileWriter; |
| 51 class IDBDatabase; | 51 class IDBDatabase; |
| 52 class IDBRequest; | 52 class IDBRequest; |
| (...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 202 { | 202 { |
| 203 EventTargetData* d = eventTargetData(); | 203 EventTargetData* d = eventTargetData(); |
| 204 if (!d) | 204 if (!d) |
| 205 return false; | 205 return false; |
| 206 return d->eventListenerMap.containsCapturing(eventType); | 206 return d->eventListenerMap.containsCapturing(eventType); |
| 207 } | 207 } |
| 208 | 208 |
| 209 } // namespace WebCore | 209 } // namespace WebCore |
| 210 | 210 |
| 211 #endif // EventTarget_h | 211 #endif // EventTarget_h |
| OLD | NEW |