| Index: Source/core/css/CSSFontFaceSrcValue.h
|
| diff --git a/Source/core/css/CSSFontFaceSrcValue.h b/Source/core/css/CSSFontFaceSrcValue.h
|
| index 332db0d3a4727536551e30bef68fb73fefaf1346..83f26f7ee64909df7100823f5434e85107ce5bd0 100644
|
| --- a/Source/core/css/CSSFontFaceSrcValue.h
|
| +++ b/Source/core/css/CSSFontFaceSrcValue.h
|
| @@ -73,7 +73,7 @@
|
|
|
| bool equals(const CSSFontFaceSrcValue&) const;
|
|
|
| - void traceAfterDispatch(Visitor*);
|
| + void traceAfterDispatch(Visitor* visitor) { CSSValue::traceAfterDispatch(visitor); }
|
|
|
| private:
|
| CSSFontFaceSrcValue(const String& resource, bool local)
|
| @@ -81,7 +81,7 @@
|
| , m_resource(resource)
|
| , m_isLocal(local)
|
| #if ENABLE(SVG_FONTS)
|
| - , m_svgFontFaceElement(nullptr)
|
| + , m_svgFontFaceElement(0)
|
| #endif
|
| {
|
| }
|
| @@ -97,7 +97,7 @@
|
| ResourcePtr<FontResource> m_fetched;
|
|
|
| #if ENABLE(SVG_FONTS)
|
| - RawPtrWillBeMember<SVGFontFaceElement> m_svgFontFaceElement;
|
| + SVGFontFaceElement* m_svgFontFaceElement;
|
| #endif
|
| };
|
|
|
|
|