Index: third_party/WebKit/Source/core/html/parser/TextResourceDecoder.cpp |
diff --git a/third_party/WebKit/Source/core/html/parser/TextResourceDecoder.cpp b/third_party/WebKit/Source/core/html/parser/TextResourceDecoder.cpp |
index cb9093cea3a3d8ddcc0ebf89dd1b829c7ffbcb58..d2666ee2d89c25edf724dbd4796d92d5f2862faa 100644 |
--- a/third_party/WebKit/Source/core/html/parser/TextResourceDecoder.cpp |
+++ b/third_party/WebKit/Source/core/html/parser/TextResourceDecoder.cpp |
@@ -119,9 +119,9 @@ static WTF::TextEncoding FindTextEncoding(const char* encoding_name, |
TextResourceDecoder::ContentType TextResourceDecoder::DetermineContentType( |
const String& mime_type) { |
- if (EqualIgnoringCase(mime_type, "text/css")) |
+ if (DeprecatedEqualIgnoringCase(mime_type, "text/css")) |
return kCSSContent; |
- if (EqualIgnoringCase(mime_type, "text/html")) |
+ if (DeprecatedEqualIgnoringCase(mime_type, "text/html")) |
return kHTMLContent; |
if (DOMImplementation::IsXMLMIMEType(mime_type)) |
return kXMLContent; |