summaryrefslogtreecommitdiffstats
path: root/WebCore/platform/graphics/haiku/GraphicsContextHaiku.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/platform/graphics/haiku/GraphicsContextHaiku.cpp')
-rw-r--r--WebCore/platform/graphics/haiku/GraphicsContextHaiku.cpp14
1 files changed, 12 insertions, 2 deletions
diff --git a/WebCore/platform/graphics/haiku/GraphicsContextHaiku.cpp b/WebCore/platform/graphics/haiku/GraphicsContextHaiku.cpp
index 7dda245..05012e8 100644
--- a/WebCore/platform/graphics/haiku/GraphicsContextHaiku.cpp
+++ b/WebCore/platform/graphics/haiku/GraphicsContextHaiku.cpp
@@ -132,7 +132,7 @@ void GraphicsContext::strokeArc(const IntRect& rect, int startAngle, int angleSp
m_data->m_view->StrokeArc(rect, startAngle, angleSpan, getHaikuStrokeStyle());
}
-void GraphicsContext::strokePath(const Path&)
+void GraphicsContext::strokePath()
{
notImplemented();
}
@@ -191,7 +191,17 @@ void GraphicsContext::fillRoundedRect(const IntRect& rect, const IntSize& topLef
// FillRect and FillArc calls are needed.
}
-void GraphicsContext::fillPath(const Path&)
+void GraphicsContext::fillPath()
+{
+ notImplemented();
+}
+
+void GraphicsContext::beginPath()
+{
+ notImplemented();
+}
+
+void GraphicsContext::addPath(const Path& path)
{
notImplemented();
}