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

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

Issue 423013002: Oilpan: Remove Element* raw pointers in objects (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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
Index: Source/core/css/CSSFontFaceSrcValue.cpp
diff --git a/Source/core/css/CSSFontFaceSrcValue.cpp b/Source/core/css/CSSFontFaceSrcValue.cpp
index d42d56dceca968b03eb99d62d0249312a2a04b54..54c7606ba86c23d2fbf9311ed08d9ea0d0bf70eb 100644
--- a/Source/core/css/CSSFontFaceSrcValue.cpp
+++ b/Source/core/css/CSSFontFaceSrcValue.cpp
@@ -141,4 +141,10 @@ bool CSSFontFaceSrcValue::equals(const CSSFontFaceSrcValue& other) const
return m_isLocal == other.m_isLocal && m_format == other.m_format && m_resource == other.m_resource;
}
+void CSSFontFaceSrcValue::traceAfterDispatch(Visitor* visitor)
+{
+ visitor->trace(m_svgFontFaceElement);
+ CSSValue::traceAfterDispatch(visitor);
+}
+
}

Powered by Google App Engine
This is Rietveld 408576698