OLD | NEW |
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 15 matching lines...) Expand all Loading... |
26 #include "config.h" | 26 #include "config.h" |
27 | 27 |
28 #if ENABLE(SVG) | 28 #if ENABLE(SVG) |
29 #include "SVGSMILElement.h" | 29 #include "SVGSMILElement.h" |
30 | 30 |
31 #include "Attribute.h" | 31 #include "Attribute.h" |
32 #include "CSSPropertyNames.h" | 32 #include "CSSPropertyNames.h" |
33 #include "Document.h" | 33 #include "Document.h" |
34 #include "Event.h" | 34 #include "Event.h" |
35 #include "EventListener.h" | 35 #include "EventListener.h" |
36 #include "FloatConversion.h" | |
37 #include "FrameView.h" | 36 #include "FrameView.h" |
38 #include "HTMLNames.h" | 37 #include "HTMLNames.h" |
39 #include "SMILTimeContainer.h" | 38 #include "SMILTimeContainer.h" |
40 #include "SVGDocumentExtensions.h" | 39 #include "SVGDocumentExtensions.h" |
41 #include "SVGNames.h" | 40 #include "SVGNames.h" |
42 #include "SVGParserUtilities.h" | 41 #include "SVGParserUtilities.h" |
43 #include "SVGSVGElement.h" | 42 #include "SVGSVGElement.h" |
44 #include "SVGURIReference.h" | 43 #include "SVGURIReference.h" |
45 #include "XLinkNames.h" | 44 #include "XLinkNames.h" |
| 45 #include "core/platform/FloatConversion.h" |
46 #include <wtf/MathExtras.h> | 46 #include <wtf/MathExtras.h> |
47 #include <wtf/StdLibExtras.h> | 47 #include <wtf/StdLibExtras.h> |
48 #include <wtf/Vector.h> | 48 #include <wtf/Vector.h> |
49 | 49 |
50 using namespace std; | 50 using namespace std; |
51 | 51 |
52 namespace WebCore { | 52 namespace WebCore { |
53 | 53 |
54 // This is used for duration type time values that can't be negative. | 54 // This is used for duration type time values that can't be negative. |
55 static const double invalidCachedTime = -1.; | 55 static const double invalidCachedTime = -1.; |
(...skipping 1140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1196 | 1196 |
1197 void SVGSMILElement::endedActiveInterval() | 1197 void SVGSMILElement::endedActiveInterval() |
1198 { | 1198 { |
1199 clearTimesWithDynamicOrigins(m_beginTimes); | 1199 clearTimesWithDynamicOrigins(m_beginTimes); |
1200 clearTimesWithDynamicOrigins(m_endTimes); | 1200 clearTimesWithDynamicOrigins(m_endTimes); |
1201 } | 1201 } |
1202 | 1202 |
1203 } | 1203 } |
1204 | 1204 |
1205 #endif | 1205 #endif |
OLD | NEW |