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

Side by Side Diff: Source/core/svg/animation/SVGSMILElement.cpp

Issue 341193009: Include Event.h in fewer header files (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase + NullExecutionContext fix 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/svg/SVGScriptElement.cpp ('k') | Source/core/testing/NullExecutionContext.cpp » ('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) 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2008 Apple Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 12 matching lines...) Expand all
23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 */ 24 */
25 25
26 #include "config.h" 26 #include "config.h"
27 #include "core/svg/animation/SVGSMILElement.h" 27 #include "core/svg/animation/SVGSMILElement.h"
28 28
29 #include "bindings/v8/ExceptionStatePlaceholder.h" 29 #include "bindings/v8/ExceptionStatePlaceholder.h"
30 #include "bindings/v8/ScriptEventListener.h" 30 #include "bindings/v8/ScriptEventListener.h"
31 #include "core/XLinkNames.h" 31 #include "core/XLinkNames.h"
32 #include "core/dom/Document.h" 32 #include "core/dom/Document.h"
33 #include "core/events/Event.h"
33 #include "core/events/EventListener.h" 34 #include "core/events/EventListener.h"
34 #include "core/events/EventSender.h" 35 #include "core/events/EventSender.h"
35 #include "core/svg/SVGDocumentExtensions.h" 36 #include "core/svg/SVGDocumentExtensions.h"
36 #include "core/svg/SVGSVGElement.h" 37 #include "core/svg/SVGSVGElement.h"
37 #include "core/svg/SVGURIReference.h" 38 #include "core/svg/SVGURIReference.h"
38 #include "core/svg/animation/SMILTimeContainer.h" 39 #include "core/svg/animation/SMILTimeContainer.h"
39 #include "platform/FloatConversion.h" 40 #include "platform/FloatConversion.h"
40 #include "wtf/MathExtras.h" 41 #include "wtf/MathExtras.h"
41 #include "wtf/StdLibExtras.h" 42 #include "wtf/StdLibExtras.h"
42 #include "wtf/Vector.h" 43 #include "wtf/Vector.h"
(...skipping 1300 matching lines...) Expand 10 before | Expand all | Expand 10 after
1343 void SVGSMILElement::trace(Visitor* visitor) 1344 void SVGSMILElement::trace(Visitor* visitor)
1344 { 1345 {
1345 visitor->trace(m_targetElement); 1346 visitor->trace(m_targetElement);
1346 visitor->trace(m_timeContainer); 1347 visitor->trace(m_timeContainer);
1347 visitor->trace(m_conditions); 1348 visitor->trace(m_conditions);
1348 visitor->trace(m_syncBaseDependents); 1349 visitor->trace(m_syncBaseDependents);
1349 SVGElement::trace(visitor); 1350 SVGElement::trace(visitor);
1350 } 1351 }
1351 1352
1352 } 1353 }
OLDNEW
« no previous file with comments | « Source/core/svg/SVGScriptElement.cpp ('k') | Source/core/testing/NullExecutionContext.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698