Index: Source/platform/fonts/Font.cpp |
diff --git a/Source/platform/fonts/Font.cpp b/Source/platform/fonts/Font.cpp |
index dab40afe3ee98a939e3a15cdde7021abc388b3b0..4174de04c6b2304a0cc8ce0ef9d25640e21a5440 100644 |
--- a/Source/platform/fonts/Font.cpp |
+++ b/Source/platform/fonts/Font.cpp |
@@ -90,7 +90,7 @@ bool Font::operator==(const Font& other) const |
&& (m_fontFallbackList ? m_fontFallbackList->generation() : 0) == (other.m_fontFallbackList ? other.m_fontFallbackList->generation() : 0); |
} |
-void Font::update(PassRefPtr<FontSelector> fontSelector) const |
+void Font::update(PassRefPtrWillBeRawPtr<FontSelector> fontSelector) const |
{ |
// FIXME: It is pretty crazy that we are willing to just poke into a RefPtr, but it ends up |
// being reasonably safe (because inherited fonts in the render tree pick up the new |