| Index: Source/core/svg/SVGFontFaceSource.cpp
|
| diff --git a/Source/core/svg/SVGFontFaceSource.cpp b/Source/core/svg/SVGFontFaceSource.cpp
|
| index ccacb8c6ac0d36e13e5e019df2ae07771e58633d..2c2a979982af9c411afe3bd806da8079b7d7b66e 100644
|
| --- a/Source/core/svg/SVGFontFaceSource.cpp
|
| +++ b/Source/core/svg/SVGFontFaceSource.cpp
|
| @@ -14,7 +14,7 @@
|
|
|
| namespace WebCore {
|
|
|
| -SVGFontFaceSource::SVGFontFaceSource(PassRefPtr<SVGFontFaceElement> element)
|
| +SVGFontFaceSource::SVGFontFaceSource(SVGFontFaceElement* element)
|
| : m_svgFontFaceElement(element)
|
| {
|
| }
|
| @@ -22,7 +22,7 @@ SVGFontFaceSource::SVGFontFaceSource(PassRefPtr<SVGFontFaceElement> element)
|
| PassRefPtr<SimpleFontData> SVGFontFaceSource::createFontData(const FontDescription& fontDescription)
|
| {
|
| return SimpleFontData::create(
|
| - SVGFontData::create(m_svgFontFaceElement.get()),
|
| + SVGFontData::create(m_svgFontFaceElement),
|
| fontDescription.effectiveFontSize(),
|
| fontDescription.isSyntheticBold(),
|
| fontDescription.isSyntheticItalic());
|
|
|