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

Unified Diff: third_party/WebKit/Source/core/html/HTMLAnchorElement.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/HTMLAnchorElement.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLAnchorElement.cpp b/third_party/WebKit/Source/core/html/HTMLAnchorElement.cpp
index aa070a2b932ecc77f04f13fa607e052a84b5b772..1abf5d042d02e3e6f349fd464feb9a04f11db773 100644
--- a/third_party/WebKit/Source/core/html/HTMLAnchorElement.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLAnchorElement.cpp
@@ -240,9 +240,9 @@ bool HTMLAnchorElement::CanStartSelection() const {
bool HTMLAnchorElement::draggable() const {
// Should be draggable if we have an href attribute.
const AtomicString& value = getAttribute(draggableAttr);
- if (EqualIgnoringCase(value, "true"))
+ if (DeprecatedEqualIgnoringCase(value, "true"))
return true;
- if (EqualIgnoringCase(value, "false"))
+ if (DeprecatedEqualIgnoringCase(value, "false"))
return false;
return hasAttribute(hrefAttr);
}
« no previous file with comments | « third_party/WebKit/Source/core/html/CrossOriginAttribute.cpp ('k') | third_party/WebKit/Source/core/html/HTMLBRElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698