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

Unified Diff: third_party/WebKit/Source/platform/wtf/text/AtomicString.h

Issue 2806263002: Rename blink::AtomicString::Lower() to DeprecatedLower(). (Closed)
Patch Set: Update a comment 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/platform/wtf/text/AtomicString.h
diff --git a/third_party/WebKit/Source/platform/wtf/text/AtomicString.h b/third_party/WebKit/Source/platform/wtf/text/AtomicString.h
index be86d59499fc6bd7e118141dfa674561bb7715a1..4361d1f9ccf664d214eb1ba441ec761b6265b522 100644
--- a/third_party/WebKit/Source/platform/wtf/text/AtomicString.h
+++ b/third_party/WebKit/Source/platform/wtf/text/AtomicString.h
@@ -165,9 +165,12 @@ class WTF_EXPORT AtomicString {
// Returns a lowercase version of the string. This function might
// convert non-ASCII characters to ASCII characters. For example,
- // lower() for U+212A is 'k'.
+ // DeprecatedLower() for U+212A is 'k'.
// This function is rarely used to implement web platform features.
- AtomicString Lower() const;
+ // See crbug.com/627682.
+ // This function is deprecated. We should use LowerASCII(), or introduce
+ // LowerUnicode().
+ AtomicString DeprecatedLower() const;
// Returns a lowercase/uppercase version of the string.
// These functions convert ASCII characters only.

Powered by Google App Engine
This is Rietveld 408576698