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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
73 NearestViewportScope, // Used by SVGGraphicsElement::getCTM() | 73 NearestViewportScope, // Used by SVGGraphicsElement::getCTM() |
74 ScreenScope, // Used by SVGGraphicsElement::getScreenCTM() | 74 ScreenScope, // Used by SVGGraphicsElement::getScreenCTM() |
75 AncestorScope // Used by SVGSVGElement::get{Enclosure|Intersection}List( ) | 75 AncestorScope // Used by SVGSVGElement::get{Enclosure|Intersection}List( ) |
76 }; | 76 }; |
77 virtual AffineTransform localCoordinateSpaceTransform(CTMScope) const; | 77 virtual AffineTransform localCoordinateSpaceTransform(CTMScope) const; |
78 virtual bool needsPendingResourceHandling() const { return true; } | 78 virtual bool needsPendingResourceHandling() const { return true; } |
79 | 79 |
80 bool instanceUpdatesBlocked() const; | 80 bool instanceUpdatesBlocked() const; |
81 void setInstanceUpdatesBlocked(bool); | 81 void setInstanceUpdatesBlocked(bool); |
82 | 82 |
83 void setWebAnimationsPending(); | |
pdr.
2015/10/21 00:47:37
Can you comment this too?
alancutter (OOO until 2018)
2015/10/21 04:20:42
Done.
| |
84 | |
83 SVGSVGElement* ownerSVGElement() const; | 85 SVGSVGElement* ownerSVGElement() const; |
84 SVGElement* viewportElement() const; | 86 SVGElement* viewportElement() const; |
85 | 87 |
86 SVGDocumentExtensions& accessDocumentSVGExtensions(); | 88 SVGDocumentExtensions& accessDocumentSVGExtensions(); |
87 | 89 |
88 virtual bool isSVGGeometryElement() const { return false; } | 90 virtual bool isSVGGeometryElement() const { return false; } |
89 virtual bool isSVGGraphicsElement() const { return false; } | 91 virtual bool isSVGGraphicsElement() const { return false; } |
90 virtual bool isFilterEffect() const { return false; } | 92 virtual bool isFilterEffect() const { return false; } |
91 virtual bool isTextContent() const { return false; } | 93 virtual bool isTextContent() const { return false; } |
92 virtual bool isTextPositioning() const { return false; } | 94 virtual bool isTextPositioning() const { return false; } |
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
276 template<typename T> inline bool is##thisType(const PassRefPtrWillBeRawPtr<T >& node) { return is##thisType(node.get()); } \ | 278 template<typename T> inline bool is##thisType(const PassRefPtrWillBeRawPtr<T >& node) { return is##thisType(node.get()); } \ |
277 template<typename T> inline bool is##thisType(const RefPtrWillBeMember<T>& n ode) { return is##thisType(node.get()); } \ | 279 template<typename T> inline bool is##thisType(const RefPtrWillBeMember<T>& n ode) { return is##thisType(node.get()); } \ |
278 template <> inline bool isElementOfType<const thisType>(const SVGElement& el ement) { return is##thisType(element); } \ | 280 template <> inline bool isElementOfType<const thisType>(const SVGElement& el ement) { return is##thisType(element); } \ |
279 DEFINE_ELEMENT_TYPE_CASTS_WITH_FUNCTION(thisType) | 281 DEFINE_ELEMENT_TYPE_CASTS_WITH_FUNCTION(thisType) |
280 | 282 |
281 } // namespace blink | 283 } // namespace blink |
282 | 284 |
283 #include "core/SVGElementTypeHelpers.h" | 285 #include "core/SVGElementTypeHelpers.h" |
284 | 286 |
285 #endif // SVGElement_h | 287 #endif // SVGElement_h |
OLD | NEW |