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

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

Issue 17480002: Remove unused includes from core/accessibility, core/css and core/dom (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: rebased ; update <wtf/Foo.h> to "wtf/Foo.h" in changed files Created 7 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/dom/EventTarget.h ('k') | Source/core/dom/GestureEvent.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 19 matching lines...) Expand all
30 */ 30 */
31 31
32 #include "config.h" 32 #include "config.h"
33 #include "core/dom/EventTarget.h" 33 #include "core/dom/EventTarget.h"
34 34
35 #include "bindings/v8/DOMWrapperWorld.h" 35 #include "bindings/v8/DOMWrapperWorld.h"
36 #include "bindings/v8/ScriptController.h" 36 #include "bindings/v8/ScriptController.h"
37 #include "core/dom/Event.h" 37 #include "core/dom/Event.h"
38 #include "core/dom/ExceptionCode.h" 38 #include "core/dom/ExceptionCode.h"
39 #include "core/inspector/InspectorInstrumentation.h" 39 #include "core/inspector/InspectorInstrumentation.h"
40 #include <wtf/MainThread.h> 40 #include "wtf/StdLibExtras.h"
41 #include <wtf/StdLibExtras.h> 41 #include "wtf/Vector.h"
42 #include <wtf/Vector.h>
43 42
44 using namespace WTF; 43 using namespace WTF;
45 44
46 namespace WebCore { 45 namespace WebCore {
47 46
48 EventTargetData::EventTargetData() 47 EventTargetData::EventTargetData()
49 { 48 {
50 } 49 }
51 50
52 EventTargetData::~EventTargetData() 51 EventTargetData::~EventTargetData()
(...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after
292 // they have one less listener to invoke. 291 // they have one less listener to invoke.
293 if (d->firingEventIterators) { 292 if (d->firingEventIterators) {
294 for (size_t i = 0; i < d->firingEventIterators->size(); ++i) { 293 for (size_t i = 0; i < d->firingEventIterators->size(); ++i) {
295 d->firingEventIterators->at(i).iterator = 0; 294 d->firingEventIterators->at(i).iterator = 0;
296 d->firingEventIterators->at(i).end = 0; 295 d->firingEventIterators->at(i).end = 0;
297 } 296 }
298 } 297 }
299 } 298 }
300 299
301 } // namespace WebCore 300 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/dom/EventTarget.h ('k') | Source/core/dom/GestureEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698