summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKristian Monsen <kristianm@google.com>2010-08-03 11:56:57 +0100
committerKristian Monsen <kristianm@google.com>2010-08-04 13:01:35 +0100
commit5ab961d131f5c6213c987b95be0fd3d547fec245 (patch)
tree6b65416eacdaf49c540bad3bea4e138826f32f6b
parentd246a992a1b834d070d06055f701df55c176266d (diff)
downloadexternal_webkit-5ab961d131f5c6213c987b95be0fd3d547fec245.zip
external_webkit-5ab961d131f5c6213c987b95be0fd3d547fec245.tar.gz
external_webkit-5ab961d131f5c6213c987b95be0fd3d547fec245.tar.bz2
Merge WebKit at r64264 : Compile fix: A method got an extra parameter in GraphicsContext.h
Change introduced here: http://trac.webkit.org/changeset/63864/trunk/WebCore/platform/graphics/GraphicsContext.h Change-Id: I471797fff394396ec375db10c3bcb4e9c00feb3e
-rw-r--r--WebCore/platform/graphics/android/GraphicsContextAndroid.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/WebCore/platform/graphics/android/GraphicsContextAndroid.cpp b/WebCore/platform/graphics/android/GraphicsContextAndroid.cpp
index 7c1f107..ba10706d 100644
--- a/WebCore/platform/graphics/android/GraphicsContextAndroid.cpp
+++ b/WebCore/platform/graphics/android/GraphicsContextAndroid.cpp
@@ -1173,7 +1173,7 @@ void GraphicsContext::setImageInterpolationQuality(InterpolationQuality mode)
*/
}
-void GraphicsContext::clipConvexPolygon(size_t numPoints, const FloatPoint*)
+void GraphicsContext::clipConvexPolygon(size_t numPoints, const FloatPoint*, bool antialias)
{
if (paintingDisabled())
return;