Index: third_party/WebKit/Source/core/css/CSSFontFace.cpp |
diff --git a/third_party/WebKit/Source/core/css/CSSFontFace.cpp b/third_party/WebKit/Source/core/css/CSSFontFace.cpp |
index eb1cc2b5263b7a8b64bbb05d65ae496b04834e57..b464c6a36f930a31847e1c9a2a8a3b0744626564 100644 |
--- a/third_party/WebKit/Source/core/css/CSSFontFace.cpp |
+++ b/third_party/WebKit/Source/core/css/CSSFontFace.cpp |
@@ -63,7 +63,7 @@ void CSSFontFace::fontLoaded(RemoteFontFaceSource* source) |
if (loadStatus() == FontFace::Loading) { |
if (source->isValid()) { |
setLoadStatus(FontFace::Loaded); |
- } else if (source->displayPeriod() == RemoteFontFaceSource::FailurePeriod) { |
+ } else if (source->getDisplayPeriod() == RemoteFontFaceSource::FailurePeriod) { |
m_sources.clear(); |
setLoadStatus(FontFace::Error); |
} else { |
@@ -166,7 +166,7 @@ void CSSFontFace::load(const FontDescription& fontDescription) |
setLoadStatus(FontFace::Error); |
} |
-void CSSFontFace::setLoadStatus(FontFace::LoadStatus newStatus) |
+void CSSFontFace::setLoadStatus(FontFace::LoadStatusType newStatus) |
{ |
ASSERT(m_fontFace); |
if (newStatus == FontFace::Error) |