diff options
Diffstat (limited to 'Source/WebCore/css/CSSComputedStyleDeclaration.h')
-rw-r--r-- | Source/WebCore/css/CSSComputedStyleDeclaration.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/Source/WebCore/css/CSSComputedStyleDeclaration.h b/Source/WebCore/css/CSSComputedStyleDeclaration.h index 718eb2d..4bf5a03 100644 --- a/Source/WebCore/css/CSSComputedStyleDeclaration.h +++ b/Source/WebCore/css/CSSComputedStyleDeclaration.h @@ -22,9 +22,9 @@ #define CSSComputedStyleDeclaration_h #include "CSSStyleDeclaration.h" -#include "PlatformString.h" #include "RenderStyleConstants.h" #include <wtf/RefPtr.h> +#include <wtf/text/WTFString.h> namespace WebCore { @@ -34,6 +34,7 @@ class CSSPrimitiveValue; class Node; class RenderStyle; class ShadowData; +class SVGPaint; enum EUpdateLayout { DoNotUpdateLayout = false, UpdateLayout = true }; @@ -76,7 +77,10 @@ private: PassRefPtr<CSSValue> valueForShadow(const ShadowData*, int, RenderStyle*) const; PassRefPtr<CSSPrimitiveValue> currentColorOrValidColor(RenderStyle*, const Color&) const; - +#if ENABLE(SVG) + PassRefPtr<SVGPaint> adjustSVGPaintForCurrentColor(PassRefPtr<SVGPaint>, RenderStyle*) const; +#endif + RefPtr<Node> m_node; PseudoId m_pseudoElementSpecifier; bool m_allowVisitedStyle; |