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

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: Rebase patch 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
« no previous file with comments | « Source/platform/fonts/shaping/SimpleShaper.cpp ('k') | Source/platform/text/StringTruncator.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/network/HTTPParsers.cpp
diff --git a/Source/platform/network/HTTPParsers.cpp b/Source/platform/network/HTTPParsers.cpp
index 88a267d725f5e08f893de225f182a7cc4ab790d7..d34d46bf81c53b821f694886845290792afbbc63 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) + horizontalEllipsisCharacter;
return String(p, length);
}
« no previous file with comments | « Source/platform/fonts/shaping/SimpleShaper.cpp ('k') | Source/platform/text/StringTruncator.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698