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 13 matching lines...) Expand all Loading... |
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 "core/events/EventTarget.h" | 32 #include "core/events/EventTarget.h" |
33 | 33 |
| 34 #include <memory> |
34 #include "bindings/core/v8/ExceptionState.h" | 35 #include "bindings/core/v8/ExceptionState.h" |
35 #include "bindings/core/v8/ScriptEventListener.h" | 36 #include "bindings/core/v8/ScriptEventListener.h" |
36 #include "bindings/core/v8/SourceLocation.h" | 37 #include "bindings/core/v8/SourceLocation.h" |
37 #include "bindings/core/v8/V8DOMActivityLogger.h" | 38 #include "bindings/core/v8/V8DOMActivityLogger.h" |
38 #include "core/dom/ExceptionCode.h" | 39 #include "core/dom/ExceptionCode.h" |
39 #include "core/editing/Editor.h" | 40 #include "core/editing/Editor.h" |
40 #include "core/events/Event.h" | 41 #include "core/events/Event.h" |
41 #include "core/events/EventUtil.h" | 42 #include "core/events/EventUtil.h" |
42 #include "core/events/PointerEvent.h" | 43 #include "core/events/PointerEvent.h" |
43 #include "core/frame/FrameHost.h" | 44 #include "core/frame/FrameHost.h" |
44 #include "core/frame/LocalDOMWindow.h" | 45 #include "core/frame/LocalDOMWindow.h" |
45 #include "core/frame/PerformanceMonitor.h" | 46 #include "core/frame/PerformanceMonitor.h" |
46 #include "core/frame/Settings.h" | 47 #include "core/frame/Settings.h" |
47 #include "core/frame/UseCounter.h" | 48 #include "core/frame/UseCounter.h" |
48 #include "core/inspector/InspectorInstrumentation.h" | 49 #include "core/inspector/InspectorInstrumentation.h" |
49 #include "platform/EventDispatchForbiddenScope.h" | 50 #include "platform/EventDispatchForbiddenScope.h" |
50 #include "platform/Histogram.h" | 51 #include "platform/Histogram.h" |
51 #include "wtf/PtrUtil.h" | 52 #include "wtf/PtrUtil.h" |
52 #include "wtf/StdLibExtras.h" | 53 #include "wtf/StdLibExtras.h" |
53 #include "wtf/Threading.h" | 54 #include "wtf/Threading.h" |
54 #include "wtf/Vector.h" | 55 #include "wtf/Vector.h" |
55 #include <memory> | |
56 | 56 |
57 using namespace WTF; | 57 using namespace WTF; |
58 | 58 |
59 namespace blink { | 59 namespace blink { |
60 namespace { | 60 namespace { |
61 | 61 |
62 enum PassiveForcedListenerResultType { | 62 enum PassiveForcedListenerResultType { |
63 PreventDefaultNotCalled, | 63 PreventDefaultNotCalled, |
64 DocumentLevelTouchPreventDefaultCalled, | 64 DocumentLevelTouchPreventDefaultCalled, |
65 PassiveForcedListenerResultTypeMax | 65 PassiveForcedListenerResultTypeMax |
(...skipping 706 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
772 // they have one less listener to invoke. | 772 // they have one less listener to invoke. |
773 if (d->firingEventIterators) { | 773 if (d->firingEventIterators) { |
774 for (const auto& iterator : *d->firingEventIterators) { | 774 for (const auto& iterator : *d->firingEventIterators) { |
775 iterator.iterator = 0; | 775 iterator.iterator = 0; |
776 iterator.end = 0; | 776 iterator.end = 0; |
777 } | 777 } |
778 } | 778 } |
779 } | 779 } |
780 | 780 |
781 } // namespace blink | 781 } // namespace blink |
OLD | NEW |