summaryrefslogtreecommitdiffstats
path: root/WebCore/platform/graphics/android/FontCacheAndroid.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/platform/graphics/android/FontCacheAndroid.cpp')
-rw-r--r--WebCore/platform/graphics/android/FontCacheAndroid.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/WebCore/platform/graphics/android/FontCacheAndroid.cpp b/WebCore/platform/graphics/android/FontCacheAndroid.cpp
index ef795de..6ec72c9 100644
--- a/WebCore/platform/graphics/android/FontCacheAndroid.cpp
+++ b/WebCore/platform/graphics/android/FontCacheAndroid.cpp
@@ -47,15 +47,15 @@ const SimpleFontData* FontCache::getFontDataForCharacters(const Font& font, cons
return font.primaryFont();
}
-FontPlatformData* FontCache::getSimilarFontPlatformData(const Font& font)
+SimpleFontData* FontCache::getSimilarFontPlatformData(const Font& font)
{
return 0;
}
-FontPlatformData* FontCache::getLastResortFallbackFont(const FontDescription& font)
+SimpleFontData* FontCache::getLastResortFallbackFont(const FontDescription& font)
{
static AtomicString str("sans-serif");
- return getCachedFontPlatformData(font, str);
+ return getCachedFontData(font, str);
}
static char* AtomicStringToUTF8String(const AtomicString& utf16)