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

Unified Diff: Source/platform/fonts/UTF16TextIterator.h

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/fonts/UTF16TextIterator.h
diff --git a/Source/platform/fonts/UTF16TextIterator.h b/Source/platform/fonts/UTF16TextIterator.h
index 62ce67564552a061e0c9e01e0b80ce0c74c7efaf..5fad6d2ab410f4b550fc009289f2942c4f043730 100644
--- a/Source/platform/fonts/UTF16TextIterator.h
+++ b/Source/platform/fonts/UTF16TextIterator.h
@@ -45,7 +45,7 @@ public:
character = *m_characters;
m_currentGlyphLength = 1;
- if (character < HiraganaLetterSmallA || consumeSlowCase(character)) {
+ if (character < characterHiraganaLetterSmallA || consumeSlowCase(character)) {
if (U_GET_GC_MASK(character) & U_GC_M_MASK)
consumeMultipleUChar();
return true;

Powered by Google App Engine
This is Rietveld 408576698