Index: third_party/WebKit/Source/platform/fonts/FontFallbackList.h |
diff --git a/third_party/WebKit/Source/platform/fonts/FontFallbackList.h b/third_party/WebKit/Source/platform/fonts/FontFallbackList.h |
index 7eac4f8f3ff5ff09237a3153b6ef21879180ae92..66c66ab5fd0d381b075f4ac99c04f116a600f0fc 100644 |
--- a/third_party/WebKit/Source/platform/fonts/FontFallbackList.h |
+++ b/third_party/WebKit/Source/platform/fonts/FontFallbackList.h |
@@ -74,7 +74,7 @@ public: |
bool loadingCustomFonts() const; |
bool shouldSkipDrawing() const; |
- FontSelector* fontSelector() const { return m_fontSelector.get(); } |
+ FontSelector* getFontSelector() const { return m_fontSelector.get(); } |
// FIXME: It should be possible to combine fontSelectorVersion and generation. |
unsigned fontSelectorVersion() const { return m_fontSelectorVersion; } |
unsigned generation() const { return m_generation; } |
@@ -86,8 +86,8 @@ public: |
m_shapeCache = FontCache::fontCache()->getShapeCache(key)->weakPtr(); |
} |
ASSERT(m_shapeCache); |
- if (fontSelector()) |
- m_shapeCache->clearIfVersionChanged(fontSelector()->version()); |
+ if (getFontSelector()) |
+ m_shapeCache->clearIfVersionChanged(getFontSelector()->version()); |
return m_shapeCache.get(); |
} |