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

Unified Diff: third_party/WebKit/Source/core/html/parser/XSSAuditor.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/XSSAuditor.cpp
diff --git a/third_party/WebKit/Source/core/html/parser/XSSAuditor.cpp b/third_party/WebKit/Source/core/html/parser/XSSAuditor.cpp
index c9c8becb68360ec1b4ab0943e3f839bc5c93a248..3a2e2fdd9778af8ee2c9b4c35dc7869ba788e44f 100644
--- a/third_party/WebKit/Source/core/html/parser/XSSAuditor.cpp
+++ b/third_party/WebKit/Source/core/html/parser/XSSAuditor.cpp
@@ -174,8 +174,8 @@ static bool IsNameOfInlineEventHandler(const Vector<UChar, 32>& name) {
static bool IsDangerousHTTPEquiv(const String& value) {
String equiv = value.StripWhiteSpace();
- return EqualIgnoringCase(equiv, "refresh") ||
- EqualIgnoringCase(equiv, "set-cookie");
+ return DeprecatedEqualIgnoringCase(equiv, "refresh") ||
+ DeprecatedEqualIgnoringCase(equiv, "set-cookie");
}
static inline String Decode16BitUnicodeEscapeSequences(const String& string) {

Powered by Google App Engine
This is Rietveld 408576698