| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2005, 2006, 2008 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005, 2006, 2008 Nikolas Zimmermann <zimmermann@kde.org> |
| 3 * Copyright (C) 2004, 2005, 2006 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2006 Rob Buis <buis@kde.org> |
| 4 * Copyright (C) 2009 Apple Inc. All rights reserved. | 4 * Copyright (C) 2009 Apple Inc. All rights reserved. |
| 5 * | 5 * |
| 6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
| 7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
| 8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
| 9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
| 10 * | 10 * |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 | 21 |
| 22 #ifndef SVGElement_h | 22 #ifndef SVGElement_h |
| 23 #define SVGElement_h | 23 #define SVGElement_h |
| 24 | 24 |
| 25 #include "core/dom/Element.h" | 25 #include "core/dom/Element.h" |
| 26 #include "core/platform/Timer.h" | 26 #include "core/platform/Timer.h" |
| 27 #include "core/svg/SVGLangSpace.h" | 27 #include "core/svg/SVGLangSpace.h" |
| 28 #include "core/svg/SVGLocatable.h" | 28 #include "core/svg/SVGLocatable.h" |
| 29 #include "core/svg/SVGParsingError.h" | 29 #include "core/svg/SVGParsingError.h" |
| 30 #include "core/svg/properties/SVGPropertyInfo.h" | 30 #include "core/svg/properties/SVGPropertyInfo.h" |
| 31 #include <wtf/HashMap.h> | 31 #include "wtf/HashMap.h" |
| 32 | 32 |
| 33 namespace WebCore { | 33 namespace WebCore { |
| 34 | 34 |
| 35 class AffineTransform; | 35 class AffineTransform; |
| 36 class CSSCursorImageValue; | 36 class CSSCursorImageValue; |
| 37 class Document; | 37 class Document; |
| 38 class SVGAttributeToPropertyMap; | 38 class SVGAttributeToPropertyMap; |
| 39 class SVGCursorElement; | 39 class SVGCursorElement; |
| 40 class SVGDocumentExtensions; | 40 class SVGDocumentExtensions; |
| 41 class SVGElementInstance; | 41 class SVGElementInstance; |
| (...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 178 | 178 |
| 179 inline const SVGElement* toSVGElement(const Node* node) | 179 inline const SVGElement* toSVGElement(const Node* node) |
| 180 { | 180 { |
| 181 ASSERT_WITH_SECURITY_IMPLICATION(!node || node->isSVGElement()); | 181 ASSERT_WITH_SECURITY_IMPLICATION(!node || node->isSVGElement()); |
| 182 return static_cast<const SVGElement*>(node); | 182 return static_cast<const SVGElement*>(node); |
| 183 } | 183 } |
| 184 | 184 |
| 185 } | 185 } |
| 186 | 186 |
| 187 #endif | 187 #endif |
| OLD | NEW |