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

Unified Diff: third_party/WebKit/Source/core/html/HTMLParamElement.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/HTMLParamElement.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLParamElement.cpp b/third_party/WebKit/Source/core/html/HTMLParamElement.cpp
index a168088c70aa0b22e38c377b01b0c7c28cf60611..e2c97711c0e5382b3190b9ba9caebe2813cd3dc5 100644
--- a/third_party/WebKit/Source/core/html/HTMLParamElement.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLParamElement.cpp
@@ -46,8 +46,9 @@ const AtomicString& HTMLParamElement::Value() const {
}
bool HTMLParamElement::IsURLParameter(const String& name) {
- return EqualIgnoringCase(name, "data") || EqualIgnoringCase(name, "movie") ||
- EqualIgnoringCase(name, "src");
+ return DeprecatedEqualIgnoringCase(name, "data") ||
+ DeprecatedEqualIgnoringCase(name, "movie") ||
+ DeprecatedEqualIgnoringCase(name, "src");
}
bool HTMLParamElement::IsURLAttribute(const Attribute& attribute) const {
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLParagraphElement.cpp ('k') | third_party/WebKit/Source/core/html/HTMLTableElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698