summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKristian Monsen <kristianm@google.com>2010-09-06 18:22:56 +0100
committerKristian Monsen <kristianm@google.com>2010-09-11 12:08:59 +0100
commit3109582109d8e9c2a93e6b686f621edf9378f327 (patch)
tree44c48897ca441f94475f43e7ffedefd446dc4f85
parentec8b8550cb6a94972f9b3d48c28385500a3921aa (diff)
downloadexternal_webkit-3109582109d8e9c2a93e6b686f621edf9378f327.zip
external_webkit-3109582109d8e9c2a93e6b686f621edf9378f327.tar.gz
external_webkit-3109582109d8e9c2a93e6b686f621edf9378f327.tar.bz2
Merge Webkit at r66666 : Renamed function in GraphicsContext.h.
Webkit CL: http://trac.webkit.org/changeset/66643 Change-Id: Ia17bde54d46e1792cfe309f19e229abe513ed52c
-rw-r--r--WebCore/platform/graphics/android/GraphicsContextAndroid.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/WebCore/platform/graphics/android/GraphicsContextAndroid.cpp b/WebCore/platform/graphics/android/GraphicsContextAndroid.cpp
index 180c97e..5371e60 100644
--- a/WebCore/platform/graphics/android/GraphicsContextAndroid.cpp
+++ b/WebCore/platform/graphics/android/GraphicsContextAndroid.cpp
@@ -536,7 +536,8 @@ void GraphicsContext::drawLineForText(IntPoint const& pt, int width, bool)
GC2Canvas(this)->drawRect(r, paint);
}
-void GraphicsContext::drawLineForMisspellingOrBadGrammar(const IntPoint& pt, int width, bool grammar)
+// TODO: Should we draw different based on TextCheckingLineStyle?
+void GraphicsContext::drawLineForTextChecking(const IntPoint& pt, int width, TextCheckingLineStyle)
{
if (paintingDisabled())
return;