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 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/CoreExport.h" | 25 #include "core/CoreExport.h" |
26 #include "core/SVGNames.h" | 26 #include "core/SVGNames.h" |
27 #include "core/dom/Element.h" | 27 #include "core/dom/Element.h" |
28 #include "core/svg/SVGParsingError.h" | 28 #include "core/svg/SVGParsingError.h" |
29 #include "core/svg/properties/SVGPropertyInfo.h" | 29 #include "core/svg/properties/SVGPropertyInfo.h" |
30 #include "platform/heap/Handle.h" | 30 #include "platform/heap/Handle.h" |
31 #include "wtf/Allocator.h" | 31 #include "platform/wtf/Allocator.h" |
32 #include "wtf/HashMap.h" | 32 #include "platform/wtf/HashMap.h" |
33 | 33 |
34 namespace blink { | 34 namespace blink { |
35 | 35 |
36 class AffineTransform; | 36 class AffineTransform; |
37 class Document; | 37 class Document; |
38 class SVGAnimatedPropertyBase; | 38 class SVGAnimatedPropertyBase; |
39 class SubtreeLayoutScope; | 39 class SubtreeLayoutScope; |
40 class SVGAnimatedString; | 40 class SVGAnimatedString; |
41 class SVGElement; | 41 class SVGElement; |
42 class SVGElementProxySet; | 42 class SVGElementProxySet; |
(...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
340 inline bool IsElementOfType<const thisType>(const SVGElement& element) { \ | 340 inline bool IsElementOfType<const thisType>(const SVGElement& element) { \ |
341 return Is##thisType(element); \ | 341 return Is##thisType(element); \ |
342 } \ | 342 } \ |
343 DEFINE_ELEMENT_TYPE_CASTS_WITH_FUNCTION(thisType) | 343 DEFINE_ELEMENT_TYPE_CASTS_WITH_FUNCTION(thisType) |
344 | 344 |
345 } // namespace blink | 345 } // namespace blink |
346 | 346 |
347 #include "core/SVGElementTypeHelpers.h" | 347 #include "core/SVGElementTypeHelpers.h" |
348 | 348 |
349 #endif // SVGElement_h | 349 #endif // SVGElement_h |
OLD | NEW |