| 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, 2014 Apple Inc. All rights reserved. | 4 * Copyright (C) 2009, 2014 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 26 matching lines...) Expand all Loading... |
| 37 class CSSCursorImageValue; | 37 class CSSCursorImageValue; |
| 38 class Document; | 38 class Document; |
| 39 class SVGAnimatedPropertyBase; | 39 class SVGAnimatedPropertyBase; |
| 40 class SubtreeLayoutScope; | 40 class SubtreeLayoutScope; |
| 41 class SVGAnimatedString; | 41 class SVGAnimatedString; |
| 42 class SVGCursorElement; | 42 class SVGCursorElement; |
| 43 class SVGDocumentExtensions; | 43 class SVGDocumentExtensions; |
| 44 class SVGElement; | 44 class SVGElement; |
| 45 class SVGElementRareData; | 45 class SVGElementRareData; |
| 46 class SVGFitToViewBox; | 46 class SVGFitToViewBox; |
| 47 class SVGLength; | |
| 48 class SVGPropertyBase; | 47 class SVGPropertyBase; |
| 49 class SVGSVGElement; | 48 class SVGSVGElement; |
| 50 class SVGUseElement; | 49 class SVGUseElement; |
| 51 | 50 |
| 52 typedef HeapHashSet<Member<SVGElement>> SVGElementSet; | 51 typedef HeapHashSet<Member<SVGElement>> SVGElementSet; |
| 53 | 52 |
| 54 class CORE_EXPORT SVGElement : public Element { | 53 class CORE_EXPORT SVGElement : public Element { |
| 55 DEFINE_WRAPPERTYPEINFO(); | 54 DEFINE_WRAPPERTYPEINFO(); |
| 56 | 55 |
| 57 public: | 56 public: |
| (...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 344 inline bool isElementOfType<const thisType>(const SVGElement& element) { \ | 343 inline bool isElementOfType<const thisType>(const SVGElement& element) { \ |
| 345 return is##thisType(element); \ | 344 return is##thisType(element); \ |
| 346 } \ | 345 } \ |
| 347 DEFINE_ELEMENT_TYPE_CASTS_WITH_FUNCTION(thisType) | 346 DEFINE_ELEMENT_TYPE_CASTS_WITH_FUNCTION(thisType) |
| 348 | 347 |
| 349 } // namespace blink | 348 } // namespace blink |
| 350 | 349 |
| 351 #include "core/SVGElementTypeHelpers.h" | 350 #include "core/SVGElementTypeHelpers.h" |
| 352 | 351 |
| 353 #endif // SVGElement_h | 352 #endif // SVGElement_h |
| OLD | NEW |