Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(396)

Unified Diff: Source/core/css/CSSFontFaceSrcValue.h

Issue 337703004: Revert of Oilpan: Trace CSSFontFaceSrcValue::m_svgFontFaceElement. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | Source/core/css/CSSFontFaceSrcValue.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
};
« no previous file with comments | « no previous file | Source/core/css/CSSFontFaceSrcValue.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698