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

Unified Diff: third_party/WebKit/Source/core/html/parser/TextResourceDecoder.cpp

Issue 2811793004: Rename EqualIgnoringCase*() to DeprecatedEqualIgnoringCase*() (Closed)
Patch Set: Created 3 years, 8 months 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: 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;

Powered by Google App Engine
This is Rietveld 408576698