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

Unified Diff: third_party/WebKit/Source/core/html/HTMLTextAreaElementTest.cpp

Issue 2812643002: Fix names of local constants after blink rename. (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/HTMLTextAreaElementTest.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLTextAreaElementTest.cpp b/third_party/WebKit/Source/core/html/HTMLTextAreaElementTest.cpp
index 3022419c9ec5f33969241b3de7f43176bd65e99d..1d3f5d40cc8b5a6283f8aff9eaa7ab5549e1575c 100644
--- a/third_party/WebKit/Source/core/html/HTMLTextAreaElementTest.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLTextAreaElementTest.cpp
@@ -10,12 +10,12 @@
namespace blink {
TEST(HTMLTextAreaElementTest, SanitizeUserInputValue) {
- UChar k_lead_surrogate = 0xD800;
+ UChar kLeadSurrogate = 0xD800;
EXPECT_EQ("", HTMLTextAreaElement::SanitizeUserInputValue("", 0));
EXPECT_EQ("", HTMLTextAreaElement::SanitizeUserInputValue("a", 0));
EXPECT_EQ("", HTMLTextAreaElement::SanitizeUserInputValue("\n", 0));
StringBuilder builder;
- builder.Append(k_lead_surrogate);
+ builder.Append(kLeadSurrogate);
String lead_surrogate = builder.ToString();
EXPECT_EQ("", HTMLTextAreaElement::SanitizeUserInputValue(lead_surrogate, 0));

Powered by Google App Engine
This is Rietveld 408576698