| Index: Source/core/rendering/svg/SVGRenderSupport.cpp
|
| diff --git a/Source/core/rendering/svg/SVGRenderSupport.cpp b/Source/core/rendering/svg/SVGRenderSupport.cpp
|
| index 7885d93525a2426e2f26e57cc7244c0825d91283..5d00b627f6d1f1a9060de6d2decaca04b16b48ac 100644
|
| --- a/Source/core/rendering/svg/SVGRenderSupport.cpp
|
| +++ b/Source/core/rendering/svg/SVGRenderSupport.cpp
|
| @@ -43,7 +43,6 @@
|
| #include "core/rendering/svg/SVGResourcesCache.h"
|
| #include "core/svg/SVGElement.h"
|
| #include "platform/geometry/TransformState.h"
|
| -#include "platform/graphics/Path.h"
|
|
|
| namespace blink {
|
|
|
| @@ -427,14 +426,6 @@ bool SVGRenderSupport::updateGraphicsContext(GraphicsContextStateSaver& stateSav
|
| return true;
|
| }
|
|
|
| -void SVGRenderSupport::fillOrStrokePath(GraphicsContext* context, unsigned short resourceMode, const Path& path)
|
| -{
|
| - if (resourceMode & ApplyToFillMode)
|
| - context->fillPath(path);
|
| - if (resourceMode & ApplyToStrokeMode)
|
| - context->strokePath(path);
|
| -}
|
| -
|
| bool SVGRenderSupport::isRenderableTextNode(const RenderObject* object)
|
| {
|
| ASSERT(object->isText());
|
|
|