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

Unified Diff: Source/core/html/track/vtt/VTTTokenizer.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/core/html/track/vtt/BufferedLineReaderTest.cpp ('k') | Source/core/layout/LayoutBlockFlowLine.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/track/vtt/VTTTokenizer.cpp
diff --git a/Source/core/html/track/vtt/VTTTokenizer.cpp b/Source/core/html/track/vtt/VTTTokenizer.cpp
index 3403c0ff35ad6dbf85bd149861e003dd76a06940..e4185a85d1a3fb173261421f0b185f022e78b1df 100644
--- a/Source/core/html/track/vtt/VTTTokenizer.cpp
+++ b/Source/core/html/track/vtt/VTTTokenizer.cpp
@@ -140,11 +140,11 @@ bool VTTTokenizer::nextToken(VTTToken& token)
} else if (equalLiteral(buffer, "&gt")) {
result.append('>');
} else if (equalLiteral(buffer, "&lrm")) {
- result.append(leftToRightMark);
+ result.append(leftToRightMarkCharacter);
} else if (equalLiteral(buffer, "&rlm")) {
- result.append(rightToLeftMark);
+ result.append(rightToLeftMarkCharacter);
} else if (equalLiteral(buffer, "&nbsp")) {
- result.append(noBreakSpace);
+ result.append(noBreakSpaceCharacter);
} else {
buffer.append(static_cast<LChar>(cc));
result.append(buffer);
« no previous file with comments | « Source/core/html/track/vtt/BufferedLineReaderTest.cpp ('k') | Source/core/layout/LayoutBlockFlowLine.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698