| 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 16 matching lines...) Expand all Loading... |
| 27 #include "core/svg/animation/SVGSMILElement.h" | 27 #include "core/svg/animation/SVGSMILElement.h" |
| 28 | 28 |
| 29 #include "SVGNames.h" | 29 #include "SVGNames.h" |
| 30 #include "XLinkNames.h" | 30 #include "XLinkNames.h" |
| 31 #include "bindings/v8/ExceptionStatePlaceholder.h" | 31 #include "bindings/v8/ExceptionStatePlaceholder.h" |
| 32 #include "bindings/v8/ScriptEventListener.h" | 32 #include "bindings/v8/ScriptEventListener.h" |
| 33 #include "core/dom/Document.h" | 33 #include "core/dom/Document.h" |
| 34 #include "core/events/EventListener.h" | 34 #include "core/events/EventListener.h" |
| 35 #include "core/events/EventSender.h" | 35 #include "core/events/EventSender.h" |
| 36 #include "core/svg/SVGDocumentExtensions.h" | 36 #include "core/svg/SVGDocumentExtensions.h" |
| 37 #include "core/svg/SVGElementInstance.h" | |
| 38 #include "core/svg/SVGSVGElement.h" | 37 #include "core/svg/SVGSVGElement.h" |
| 39 #include "core/svg/SVGURIReference.h" | 38 #include "core/svg/SVGURIReference.h" |
| 40 #include "core/svg/animation/SMILTimeContainer.h" | 39 #include "core/svg/animation/SMILTimeContainer.h" |
| 41 #include "platform/FloatConversion.h" | 40 #include "platform/FloatConversion.h" |
| 42 #include "wtf/MathExtras.h" | 41 #include "wtf/MathExtras.h" |
| 43 #include "wtf/StdLibExtras.h" | 42 #include "wtf/StdLibExtras.h" |
| 44 #include "wtf/Vector.h" | 43 #include "wtf/Vector.h" |
| 45 | 44 |
| 46 using namespace std; | 45 using namespace std; |
| 47 | 46 |
| (...skipping 1306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1354 void SVGSMILElement::trace(Visitor* visitor) | 1353 void SVGSMILElement::trace(Visitor* visitor) |
| 1355 { | 1354 { |
| 1356 visitor->trace(m_targetElement); | 1355 visitor->trace(m_targetElement); |
| 1357 visitor->trace(m_timeContainer); | 1356 visitor->trace(m_timeContainer); |
| 1358 visitor->trace(m_conditions); | 1357 visitor->trace(m_conditions); |
| 1359 visitor->trace(m_syncBaseDependents); | 1358 visitor->trace(m_syncBaseDependents); |
| 1360 SVGElement::trace(visitor); | 1359 SVGElement::trace(visitor); |
| 1361 } | 1360 } |
| 1362 | 1361 |
| 1363 } | 1362 } |
| OLD | NEW |