| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2007 Eric Seidel <eric@webkit.org> | 2 * Copyright (C) 2007 Eric Seidel <eric@webkit.org> |
| 3 * | 3 * |
| 4 * This library is free software; you can redistribute it and/or | 4 * This library is free software; you can redistribute it and/or |
| 5 * modify it under the terms of the GNU Library General Public | 5 * modify it under the terms of the GNU Library General Public |
| 6 * License as published by the Free Software Foundation; either | 6 * License as published by the Free Software Foundation; either |
| 7 * version 2 of the License, or (at your option) any later version. | 7 * version 2 of the License, or (at your option) any later version. |
| 8 * | 8 * |
| 9 * This library is distributed in the hope that it will be useful, | 9 * This library is distributed in the hope that it will be useful, |
| 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 #include "core/svg/SVGAnimateMotionElement.h" | 26 #include "core/svg/SVGAnimateMotionElement.h" |
| 27 #include "core/svg/SVGDocumentExtensions.h" | 27 #include "core/svg/SVGDocumentExtensions.h" |
| 28 #include "core/svg/SVGPathElement.h" | 28 #include "core/svg/SVGPathElement.h" |
| 29 | 29 |
| 30 namespace blink { | 30 namespace blink { |
| 31 | 31 |
| 32 inline SVGMPathElement::SVGMPathElement(Document& document) | 32 inline SVGMPathElement::SVGMPathElement(Document& document) |
| 33 : SVGElement(SVGNames::mpathTag, document) | 33 : SVGElement(SVGNames::mpathTag, document) |
| 34 , SVGURIReference(this) | 34 , SVGURIReference(this) |
| 35 { | 35 { |
| 36 ASSERT(RuntimeEnabledFeatures::smilEnabled()); |
| 36 } | 37 } |
| 37 | 38 |
| 38 DEFINE_TRACE(SVGMPathElement) | 39 DEFINE_TRACE(SVGMPathElement) |
| 39 { | 40 { |
| 40 SVGElement::trace(visitor); | 41 SVGElement::trace(visitor); |
| 41 SVGURIReference::trace(visitor); | 42 SVGURIReference::trace(visitor); |
| 42 } | 43 } |
| 43 | 44 |
| 44 DEFINE_NODE_FACTORY(SVGMPathElement) | 45 DEFINE_NODE_FACTORY(SVGMPathElement) |
| 45 | 46 |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 notifyParentOfPathChange(parentNode()); | 120 notifyParentOfPathChange(parentNode()); |
| 120 } | 121 } |
| 121 | 122 |
| 122 void SVGMPathElement::notifyParentOfPathChange(ContainerNode* parent) | 123 void SVGMPathElement::notifyParentOfPathChange(ContainerNode* parent) |
| 123 { | 124 { |
| 124 if (isSVGAnimateMotionElement(parent)) | 125 if (isSVGAnimateMotionElement(parent)) |
| 125 toSVGAnimateMotionElement(parent)->updateAnimationPath(); | 126 toSVGAnimateMotionElement(parent)->updateAnimationPath(); |
| 126 } | 127 } |
| 127 | 128 |
| 128 } // namespace blink | 129 } // namespace blink |
| OLD | NEW |