Index: Source/core/css/FontFaceSet.cpp |
diff --git a/Source/core/css/FontFaceSet.cpp b/Source/core/css/FontFaceSet.cpp |
index 8f8a955abb1df053af5711b9282d03198ac85bf8..91f43ddbb0db6bdb6c20111842ac7da7f9b30b35 100644 |
--- a/Source/core/css/FontFaceSet.cpp |
+++ b/Source/core/css/FontFaceSet.cpp |
@@ -546,10 +546,10 @@ void FontFaceSet::FontLoadHistogram::record() |
{ |
if (!m_recorded) { |
m_recorded = true; |
- blink::Platform::current()->histogramCustomCounts("WebFont.WebFontsInPage", m_count, 1, 100, 50); |
+ Platform::current()->histogramCustomCounts("WebFont.WebFontsInPage", m_count, 1, 100, 50); |
} |
if (m_status == HadBlankText || m_status == DidNotHaveBlankText) { |
- blink::Platform::current()->histogramEnumeration("WebFont.HadBlankText", m_status == HadBlankText ? 1 : 0, 2); |
+ Platform::current()->histogramEnumeration("WebFont.HadBlankText", m_status == HadBlankText ? 1 : 0, 2); |
m_status = Reported; |
} |
} |