summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorKristian Monsen <kristianm@google.com>2011-11-22 13:47:42 +0000
committerKristian Monsen <kristianm@google.com>2011-11-22 13:47:42 +0000
commite58043a33f14a99ec253a249a2e79c559fab465d (patch)
tree0750654bf86040389b310cb6aa7f23a526e65291 /Source
parent8455890bc9390c647ebc53fe5a8d2f7557c10dba (diff)
downloadexternal_webkit-e58043a33f14a99ec253a249a2e79c559fab465d.zip
external_webkit-e58043a33f14a99ec253a249a2e79c559fab465d.tar.gz
external_webkit-e58043a33f14a99ec253a249a2e79c559fab465d.tar.bz2
Fix for bug 5152544, reduce warnings in external/webkit
There are some more warnings, but they are upstream, or without small workarounds. Change-Id: Ia98b66f1c0b84fd1aabad8168f2cea15e1df29b9
Diffstat (limited to 'Source')
-rw-r--r--Source/WebCore/platform/graphics/android/FontPlatformDataAndroid.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/WebCore/platform/graphics/android/FontPlatformDataAndroid.cpp b/Source/WebCore/platform/graphics/android/FontPlatformDataAndroid.cpp
index c09120f..e4fa435 100644
--- a/Source/WebCore/platform/graphics/android/FontPlatformDataAndroid.cpp
+++ b/Source/WebCore/platform/graphics/android/FontPlatformDataAndroid.cpp
@@ -116,7 +116,7 @@ FontPlatformData::FontPlatformData(SkTypeface* tf, float textSize, bool fakeBold
FontPlatformData::FontPlatformData(const FontPlatformData& src, float textSize)
: mTypeface(src.mTypeface), mTextSize(textSize), mEmSizeInFontUnits(src.mEmSizeInFontUnits), mFakeBold(src.mFakeBold), mFakeItalic(src.mFakeItalic),
- m_harfbuzzFace(src.m_harfbuzzFace), mOrientation(src.mOrientation), mTextOrientation(src.mTextOrientation)
+ mOrientation(src.mOrientation), mTextOrientation(src.mTextOrientation), m_harfbuzzFace(src.m_harfbuzzFace)
{
if (hashTableDeletedFontValue() != mTypeface) {
SkSafeRef(mTypeface);