summaryrefslogtreecommitdiffstats
path: root/WebCore/platform/graphics/TextRun.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/platform/graphics/TextRun.h')
-rw-r--r--WebCore/platform/graphics/TextRun.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/WebCore/platform/graphics/TextRun.h b/WebCore/platform/graphics/TextRun.h
index 166b047..03d7b9f 100644
--- a/WebCore/platform/graphics/TextRun.h
+++ b/WebCore/platform/graphics/TextRun.h
@@ -29,7 +29,7 @@
namespace WebCore {
class RenderObject;
-class SVGPaintServer;
+class RenderSVGResource;
class TextRun {
public:
@@ -47,7 +47,7 @@ public:
, m_disableSpacing(false)
#if ENABLE(SVG_FONTS)
, m_referencingRenderObject(0)
- , m_activePaintServer(0)
+ , m_activePaintingResource(0)
#endif
{
}
@@ -66,7 +66,7 @@ public:
, m_disableSpacing(false)
#if ENABLE(SVG_FONTS)
, m_referencingRenderObject(0)
- , m_activePaintServer(0)
+ , m_activePaintingResource(0)
#endif
{
}
@@ -98,8 +98,8 @@ public:
RenderObject* referencingRenderObject() const { return m_referencingRenderObject; }
void setReferencingRenderObject(RenderObject* object) { m_referencingRenderObject = object; }
- SVGPaintServer* activePaintServer() const { return m_activePaintServer; }
- void setActivePaintServer(SVGPaintServer* object) { m_activePaintServer = object; }
+ RenderSVGResource* activePaintingResource() const { return m_activePaintingResource; }
+ void setActivePaintingResource(RenderSVGResource* object) { m_activePaintingResource = object; }
#endif
private:
@@ -117,7 +117,7 @@ private:
#if ENABLE(SVG_FONTS)
RenderObject* m_referencingRenderObject;
- SVGPaintServer* m_activePaintServer;
+ RenderSVGResource* m_activePaintingResource;
#endif
};