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 Apple Inc. All rights reserved. | 5 * Copyright (C) 2004, 2005, 2006, 2007 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 12 matching lines...) Expand all Loading... |
23 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, | 23 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
24 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR | 24 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
25 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY | 25 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY |
26 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 * 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 | 31 |
32 #include "config.h" | 32 #include "config.h" |
33 #include "EventTarget.h" | 33 #include "core/dom/EventTarget.h" |
34 | 34 |
35 #include "Event.h" | |
36 #include "EventException.h" | |
37 #include "InspectorInstrumentation.h" | 35 #include "InspectorInstrumentation.h" |
38 #include "ScriptController.h" | 36 #include "ScriptController.h" |
39 #include "TransitionEvent.h" | 37 #include "core/dom/Event.h" |
| 38 #include "core/dom/EventException.h" |
| 39 #include "core/dom/TransitionEvent.h" |
40 #include <wtf/MainThread.h> | 40 #include <wtf/MainThread.h> |
41 #include <wtf/StdLibExtras.h> | 41 #include <wtf/StdLibExtras.h> |
42 #include <wtf/Vector.h> | 42 #include <wtf/Vector.h> |
43 | 43 |
44 using namespace WTF; | 44 using namespace WTF; |
45 | 45 |
46 namespace WebCore { | 46 namespace WebCore { |
47 | 47 |
48 EventTargetData::EventTargetData() | 48 EventTargetData::EventTargetData() |
49 { | 49 { |
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
296 // they have one less listener to invoke. | 296 // they have one less listener to invoke. |
297 if (d->firingEventIterators) { | 297 if (d->firingEventIterators) { |
298 for (size_t i = 0; i < d->firingEventIterators->size(); ++i) { | 298 for (size_t i = 0; i < d->firingEventIterators->size(); ++i) { |
299 d->firingEventIterators->at(i).iterator = 0; | 299 d->firingEventIterators->at(i).iterator = 0; |
300 d->firingEventIterators->at(i).end = 0; | 300 d->firingEventIterators->at(i).end = 0; |
301 } | 301 } |
302 } | 302 } |
303 } | 303 } |
304 | 304 |
305 } // namespace WebCore | 305 } // namespace WebCore |
OLD | NEW |