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

Unified Diff: Source/platform/fonts/Font.h

Issue 754743004: Don't return false for RenderStyle::operator== while fonts load. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years 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/platform/fonts/Font.h
diff --git a/Source/platform/fonts/Font.h b/Source/platform/fonts/Font.h
index bf4c15d80dcb98664fafc2854ca60a629428cc49..23cc29743b94a65f04f7a49cc179a8783e6b69fc 100644
--- a/Source/platform/fonts/Font.h
+++ b/Source/platform/fonts/Font.h
@@ -171,12 +171,12 @@ public:
void willUseFontData(UChar32) const;
-private:
bool loadingCustomFonts() const
{
return m_fontFallbackList && m_fontFallbackList->loadingCustomFonts();
}
+private:
bool shouldSkipDrawing() const
{
return m_fontFallbackList && m_fontFallbackList->shouldSkipDrawing();

Powered by Google App Engine
This is Rietveld 408576698