Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(58)

Side by Side Diff: Source/core/events/EventTarget.cpp

Issue 332933002: Qualify the generated includes in core (partial) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « Source/core/events/EventPath.cpp ('k') | Source/core/events/ThreadLocalEventNames.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 14 matching lines...) Expand all
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 "core/events/EventTarget.h" 33 #include "core/events/EventTarget.h"
34 34
35 #include "RuntimeEnabledFeatures.h"
36 #include "bindings/v8/ExceptionState.h" 35 #include "bindings/v8/ExceptionState.h"
37 #include "core/dom/ExceptionCode.h" 36 #include "core/dom/ExceptionCode.h"
38 #include "core/dom/NoEventDispatchAssertion.h" 37 #include "core/dom/NoEventDispatchAssertion.h"
39 #include "core/editing/Editor.h" 38 #include "core/editing/Editor.h"
40 #include "core/events/Event.h" 39 #include "core/events/Event.h"
41 #include "core/inspector/InspectorInstrumentation.h" 40 #include "core/inspector/InspectorInstrumentation.h"
42 #include "core/frame/DOMWindow.h" 41 #include "core/frame/DOMWindow.h"
42 #include "platform/RuntimeEnabledFeatures.h"
43 #include "wtf/StdLibExtras.h" 43 #include "wtf/StdLibExtras.h"
44 #include "wtf/Vector.h" 44 #include "wtf/Vector.h"
45 45
46 using namespace WTF; 46 using namespace WTF;
47 47
48 namespace WebCore { 48 namespace WebCore {
49 49
50 EventTargetData::EventTargetData() 50 EventTargetData::EventTargetData()
51 { 51 {
52 } 52 }
(...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after
372 // they have one less listener to invoke. 372 // they have one less listener to invoke.
373 if (d->firingEventIterators) { 373 if (d->firingEventIterators) {
374 for (size_t i = 0; i < d->firingEventIterators->size(); ++i) { 374 for (size_t i = 0; i < d->firingEventIterators->size(); ++i) {
375 d->firingEventIterators->at(i).iterator = 0; 375 d->firingEventIterators->at(i).iterator = 0;
376 d->firingEventIterators->at(i).end = 0; 376 d->firingEventIterators->at(i).end = 0;
377 } 377 }
378 } 378 }
379 } 379 }
380 380
381 } // namespace WebCore 381 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/events/EventPath.cpp ('k') | Source/core/events/ThreadLocalEventNames.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698