Index: Source/WebCore/platform/graphics/Path.cpp |
diff --git a/Source/WebCore/platform/graphics/Path.cpp b/Source/WebCore/platform/graphics/Path.cpp |
index e3bee07ffe2c32774d2d1117dcea4eb197c3ab56..983d1cfb69ca14e35ad93e0b95e248d5854a0a13 100644 |
--- a/Source/WebCore/platform/graphics/Path.cpp |
+++ b/Source/WebCore/platform/graphics/Path.cpp |
@@ -37,7 +37,6 @@ |
namespace WebCore { |
-#if !PLATFORM(OPENVG) && !PLATFORM(QT) |
static void pathLengthApplierFunction(void* info, const PathElement* element) |
{ |
PathTraversalState& traversalState = *static_cast<PathTraversalState*>(info); |
@@ -90,7 +89,6 @@ float Path::normalAngleAtLength(float length, bool& ok) const |
ok = traversalState.m_success; |
return traversalState.m_normalAngle; |
} |
-#endif |
void Path::addRoundedRect(const RoundedRect& r) |
{ |
@@ -188,7 +186,7 @@ void Path::addBeziersForRoundedRect(const FloatRect& rect, const FloatSize& topL |
closeSubpath(); |
} |
-#if !USE(CG) && !PLATFORM(QT) |
+#if !USE(CG) |
FloatRect Path::fastBoundingRect() const |
{ |
return boundingRect(); |