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

Unified Diff: third_party/WebKit/Source/core/html/HTMLTextAreaElement.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/HTMLTextAreaElement.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLTextAreaElement.cpp b/third_party/WebKit/Source/core/html/HTMLTextAreaElement.cpp
index f17c368e9508b1057b312ee08661fc6e188c0106..57410aae2f5e9a744f67e0f20e05d659a6d4735a 100644
--- a/third_party/WebKit/Source/core/html/HTMLTextAreaElement.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLTextAreaElement.cpp
@@ -179,10 +179,11 @@ void HTMLTextAreaElement::ParseAttribute(
// deprecated. The soft/hard /off values are a recommendation for HTML 4
// extension by IE and NS 4.
WrapMethod wrap;
- if (EqualIgnoringCase(value, "physical") ||
- EqualIgnoringCase(value, "hard") || EqualIgnoringCase(value, "on"))
+ if (DeprecatedEqualIgnoringCase(value, "physical") ||
+ DeprecatedEqualIgnoringCase(value, "hard") ||
+ DeprecatedEqualIgnoringCase(value, "on"))
wrap = kHardWrap;
- else if (EqualIgnoringCase(value, "off"))
+ else if (DeprecatedEqualIgnoringCase(value, "off"))
wrap = kNoWrap;
else
wrap = kSoftWrap;
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLTablePartElement.cpp ('k') | third_party/WebKit/Source/core/html/HTMLUListElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698