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

Unified Diff: third_party/WebKit/Source/core/loader/resource/CSSStyleSheetResource.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/loader/resource/CSSStyleSheetResource.cpp
diff --git a/third_party/WebKit/Source/core/loader/resource/CSSStyleSheetResource.cpp b/third_party/WebKit/Source/core/loader/resource/CSSStyleSheetResource.cpp
index 1d4cca58ea65c750f9af0cfe0c7e907dc66a4381..fbf781a453be81334339ce7bf20f1f9a9045635f 100644
--- a/third_party/WebKit/Source/core/loader/resource/CSSStyleSheetResource.cpp
+++ b/third_party/WebKit/Source/core/loader/resource/CSSStyleSheetResource.cpp
@@ -201,8 +201,9 @@ bool CSSStyleSheetResource::CanUseSheet(MIMETypeCheck mime_type_check) const {
return true;
AtomicString content_type = HttpContentType();
return content_type.IsEmpty() ||
- EqualIgnoringCase(content_type, "text/css") ||
- EqualIgnoringCase(content_type, "application/x-unknown-content-type");
+ DeprecatedEqualIgnoringCase(content_type, "text/css") ||
+ DeprecatedEqualIgnoringCase(content_type,
+ "application/x-unknown-content-type");
}
StyleSheetContents* CSSStyleSheetResource::RestoreParsedStyleSheet(
« no previous file with comments | « third_party/WebKit/Source/core/loader/HistoryItem.cpp ('k') | third_party/WebKit/Source/core/page/ContextMenuController.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698