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

Unified Diff: Source/platform/network/HTTPParsers.cpp

Issue 1119663002: Making Unicode character names consistent (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Code changes to correct Test Expectation Created 5 years, 7 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: Source/platform/network/HTTPParsers.cpp
diff --git a/Source/platform/network/HTTPParsers.cpp b/Source/platform/network/HTTPParsers.cpp
index 88a267d725f5e08f893de225f182a7cc4ab790d7..4e8aa01574696c3947a155f214d8414ca4b6cb4e 100644
--- a/Source/platform/network/HTTPParsers.cpp
+++ b/Source/platform/network/HTTPParsers.cpp
@@ -136,7 +136,7 @@ static const size_t maxInputSampleSize = 128;
static String trimInputSample(const char* p, size_t length)
{
if (length > maxInputSampleSize)
- return String(p, maxInputSampleSize) + horizontalEllipsis;
+ return String(p, maxInputSampleSize) + characterHorizontalEllipsis;
return String(p, length);
}

Powered by Google App Engine
This is Rietveld 408576698