summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/platform/graphics/android/FontCustomPlatformData.cpp
diff options
context:
space:
mode:
authorJohn Reck <jreck@google.com>2011-10-12 14:08:26 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2011-10-12 14:08:26 -0700
commit64652022e8f43ecfabaebc5cd148f1c3058e667c (patch)
treee2cf2b1d86169a2e8bdfbc0a990dba4cf51c977b /Source/WebCore/platform/graphics/android/FontCustomPlatformData.cpp
parent5403113c5aa5d55a05ea001f562829e907632178 (diff)
downloadexternal_webkit-64652022e8f43ecfabaebc5cd148f1c3058e667c.zip
external_webkit-64652022e8f43ecfabaebc5cd148f1c3058e667c.tar.gz
external_webkit-64652022e8f43ecfabaebc5cd148f1c3058e667c.tar.bz2
Revert "Support "Vertical Writing Mode"."
This reverts commit 5403113c5aa5d55a05ea001f562829e907632178
Diffstat (limited to 'Source/WebCore/platform/graphics/android/FontCustomPlatformData.cpp')
-rw-r--r--Source/WebCore/platform/graphics/android/FontCustomPlatformData.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/Source/WebCore/platform/graphics/android/FontCustomPlatformData.cpp b/Source/WebCore/platform/graphics/android/FontCustomPlatformData.cpp
index 4279ce8..72fac68 100644
--- a/Source/WebCore/platform/graphics/android/FontCustomPlatformData.cpp
+++ b/Source/WebCore/platform/graphics/android/FontCustomPlatformData.cpp
@@ -45,8 +45,7 @@ FontCustomPlatformData::~FontCustomPlatformData()
// the unref is enough to release the font data...
}
-FontPlatformData FontCustomPlatformData::fontPlatformData(int size, bool bold, bool italic,
- FontOrientation fontOrientation, TextOrientation textOrientation, FontWidthVariant, FontRenderingMode)
+FontPlatformData FontCustomPlatformData::fontPlatformData(int size, bool bold, bool italic, FontOrientation, TextOrientation, FontWidthVariant, FontRenderingMode)
{
// turn bold/italic into fakeBold/fakeItalic
if (m_typeface != NULL) {
@@ -55,7 +54,7 @@ FontPlatformData FontCustomPlatformData::fontPlatformData(int size, bool bold, b
if (m_typeface->isItalic() == italic)
italic = false;
}
- return FontPlatformData(m_typeface, size, bold, italic, fontOrientation, textOrientation);
+ return FontPlatformData(m_typeface, size, bold, italic);
}
FontCustomPlatformData* createFontCustomPlatformData(SharedBuffer* buffer)