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

Unified Diff: third_party/WebKit/Source/core/editing/EditingCommandTest.cpp

Issue 2821633002: Remove WTF::String::DeprecatedUpper() (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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/html/media/MediaDocument.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/editing/EditingCommandTest.cpp
diff --git a/third_party/WebKit/Source/core/editing/EditingCommandTest.cpp b/third_party/WebKit/Source/core/editing/EditingCommandTest.cpp
index 19e0bfd83b516b5177bae31e172402dd9c443bf4..7df938f7abd89bdb6e7e45300e317f4ad284696c 100644
--- a/third_party/WebKit/Source/core/editing/EditingCommandTest.cpp
+++ b/third_party/WebKit/Source/core/editing/EditingCommandTest.cpp
@@ -57,7 +57,7 @@ TEST_F(EditingCommandTest, CreateCommandFromStringCaseFolding) {
dummy_editor.CreateCommand(String(entry.name).DeprecatedLower());
EXPECT_EQ(static_cast<int>(entry.type), command.IdForHistogram())
<< entry.name;
- command = dummy_editor.CreateCommand(String(entry.name).DeprecatedUpper());
+ command = dummy_editor.CreateCommand(String(entry.name).UpperASCII());
EXPECT_EQ(static_cast<int>(entry.type), command.IdForHistogram())
<< entry.name;
}
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/html/media/MediaDocument.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698