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) { |