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

Unified Diff: third_party/WebKit/Source/core/inspector/InspectorPageAgent.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/inspector/InspectorPageAgent.cpp
diff --git a/third_party/WebKit/Source/core/inspector/InspectorPageAgent.cpp b/third_party/WebKit/Source/core/inspector/InspectorPageAgent.cpp
index da77e15d0a17aa45042cfe8c317ca487e8e17878..6d7112ce07597d604eedb1f64181324fb6fef964 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorPageAgent.cpp
+++ b/third_party/WebKit/Source/core/inspector/InspectorPageAgent.cpp
@@ -150,7 +150,7 @@ static std::unique_ptr<TextResourceDecoder> CreateResourceTextDecoder(
decoder->UseLenientXMLDecoding();
return decoder;
}
- if (EqualIgnoringCase(mime_type, "text/html"))
+ if (DeprecatedEqualIgnoringCase(mime_type, "text/html"))
return TextResourceDecoder::Create("text/html", "UTF-8");
if (MIMETypeRegistry::IsSupportedJavaScriptMIMEType(mime_type) ||
DOMImplementation::IsJSONMIMEType(mime_type))

Powered by Google App Engine
This is Rietveld 408576698