| Index: third_party/WebKit/Source/platform/fonts/FontCustomPlatformData.cpp
|
| diff --git a/third_party/WebKit/Source/platform/fonts/FontCustomPlatformData.cpp b/third_party/WebKit/Source/platform/fonts/FontCustomPlatformData.cpp
|
| index 714fc0496bd0077427bdbb4cbcc42412526b51fa..a9aefe36b15bf6e972991ccb49af3949246781a7 100644
|
| --- a/third_party/WebKit/Source/platform/fonts/FontCustomPlatformData.cpp
|
| +++ b/third_party/WebKit/Source/platform/fonts/FontCustomPlatformData.cpp
|
| @@ -50,10 +50,10 @@ FontCustomPlatformData::~FontCustomPlatformData()
|
| {
|
| }
|
|
|
| -FontPlatformData FontCustomPlatformData::fontPlatformData(float size, bool bold, bool italic, FontOrientation orientation)
|
| +FontPlatformData FontCustomPlatformData::fontPlatformData(bool bold, bool italic, FontOrientation orientation)
|
| {
|
| ASSERT(m_typeface);
|
| - return FontPlatformData(m_typeface.get(), "", size, bold && !m_typeface->isBold(), italic && !m_typeface->isItalic(), orientation);
|
| + return FontPlatformData(m_typeface.get(), "", bold && !m_typeface->isBold(), italic && !m_typeface->isItalic(), orientation);
|
| }
|
|
|
| PassOwnPtr<FontCustomPlatformData> FontCustomPlatformData::create(SharedBuffer* buffer, String& otsParseMessage)
|
|
|