Index: Source/core/html/canvas/CanvasRenderingContext2D.cpp |
diff --git a/Source/core/html/canvas/CanvasRenderingContext2D.cpp b/Source/core/html/canvas/CanvasRenderingContext2D.cpp |
index 307b2946078a608683ca101d0ac664b34f4e9458..1b703c02d21e33e3f5823e906fd79d95c83a5fa9 100644 |
--- a/Source/core/html/canvas/CanvasRenderingContext2D.cpp |
+++ b/Source/core/html/canvas/CanvasRenderingContext2D.cpp |
@@ -1869,7 +1869,7 @@ void CanvasRenderingContext2D::setFont(const String& newFont) |
return; |
MutableStylePropertyMap::iterator i = m_fetchedFonts.find(newFont); |
- RefPtr<MutableStylePropertySet> parsedStyle = i != m_fetchedFonts.end() ? i->value : nullptr; |
+ RefPtrWillBeRawPtr<MutableStylePropertySet> parsedStyle = i != m_fetchedFonts.end() ? i->value : nullptr; |
if (!parsedStyle) { |
parsedStyle = MutableStylePropertySet::create(); |