Index: Source/core/svg/SVGElement.h |
diff --git a/Source/core/svg/SVGElement.h b/Source/core/svg/SVGElement.h |
index cf7374eff35b32bbe80644aaffca7e658f8cb7d4..3c347034e93238919fb85ff74007254372a69d83 100644 |
--- a/Source/core/svg/SVGElement.h |
+++ b/Source/core/svg/SVGElement.h |
@@ -25,7 +25,6 @@ |
#include "core/dom/Element.h" |
#include "core/svg/SVGAnimatedString.h" |
#include "core/svg/SVGLangSpace.h" |
-#include "core/svg/SVGLocatable.h" |
#include "core/svg/SVGParsingError.h" |
#include "core/svg/properties/SVGAnimatedPropertyMacros.h" |
#include "core/svg/properties/SVGPropertyInfo.h" |
@@ -59,7 +58,11 @@ public: |
PassRefPtr<CSSValue> getPresentationAttribute(const String& name); |
bool isKnownAttribute(const QualifiedName&); |
static bool isAnimatableCSSProperty(const QualifiedName&); |
- virtual AffineTransform localCoordinateSpaceTransform(SVGLocatable::CTMScope) const; |
+ enum CTMScope { |
+ NearestViewportScope, // Used for getCTM() |
+ ScreenScope // Used for getScreenCTM() |
pdr.
2013/11/08 23:50:48
These comments are no longer correct
rwlbuis
2013/11/10 20:35:45
I updated them.
|
+ }; |
+ virtual AffineTransform localCoordinateSpaceTransform(CTMScope) const; |
virtual bool needsPendingResourceHandling() const { return true; } |
bool instanceUpdatesBlocked() const; |