Index: third_party/WebKit/Source/core/html/HTMLObjectElement.cpp |
diff --git a/third_party/WebKit/Source/core/html/HTMLObjectElement.cpp b/third_party/WebKit/Source/core/html/HTMLObjectElement.cpp |
index 85c47556ddfa8d801483e25e4a7d1b29e7357899..91bbbc598921498c7c4af910594c895ca3fa98be 100644 |
--- a/third_party/WebKit/Source/core/html/HTMLObjectElement.cpp |
+++ b/third_party/WebKit/Source/core/html/HTMLObjectElement.cpp |
@@ -368,7 +368,7 @@ void HTMLObjectElement::renderFallbackContent() |
return; |
// Before we give up and use fallback content, check to see if this is a MIME type issue. |
- if (m_imageLoader && m_imageLoader->image() && m_imageLoader->image()->status() != Resource::LoadError) { |
+ if (m_imageLoader && m_imageLoader->image() && m_imageLoader->image()->getStatus() != Resource::LoadError) { |
m_serviceType = m_imageLoader->image()->response().mimeType(); |
if (!isImageType()) { |
// If we don't think we have an image type anymore, then clear the image from the loader. |