summaryrefslogtreecommitdiffstats
path: root/WebCore/platform/graphics/android
diff options
context:
space:
mode:
authorBen Murdoch <benm@google.com>2009-08-17 21:02:23 +0100
committerBen Murdoch <benm@google.com>2009-08-17 21:02:23 +0100
commitb32f88b61a9162a5194ab02c12fc3aff6140e30e (patch)
tree0140a21d6c949df5dc674aee32e5e032cbf6cf1c /WebCore/platform/graphics/android
parente8fa33c2275a5db4e835561017e8fc2fd0b5bcc5 (diff)
downloadexternal_webkit-b32f88b61a9162a5194ab02c12fc3aff6140e30e.zip
external_webkit-b32f88b61a9162a5194ab02c12fc3aff6140e30e.tar.gz
external_webkit-b32f88b61a9162a5194ab02c12fc3aff6140e30e.tar.bz2
Fix the last of the linker errors !
Diffstat (limited to 'WebCore/platform/graphics/android')
-rw-r--r--WebCore/platform/graphics/android/PathAndroid.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/WebCore/platform/graphics/android/PathAndroid.cpp b/WebCore/platform/graphics/android/PathAndroid.cpp
index 0eb1414..a643fc0 100644
--- a/WebCore/platform/graphics/android/PathAndroid.cpp
+++ b/WebCore/platform/graphics/android/PathAndroid.cpp
@@ -66,6 +66,11 @@ bool Path::isEmpty() const
return m_path->isEmpty();
}
+bool Path::hasCurrentPoint() const
+{
+ return !isEmpty();
+}
+
bool Path::contains(const FloatPoint& point, WindRule rule) const
{
SkRegion rgn, clip;