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

Unified Diff: Source/modules/indexeddb/IDBKeyPath.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/modules/accessibility/AXLayoutObject.cpp ('k') | Source/platform/fonts/Character.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/indexeddb/IDBKeyPath.cpp
diff --git a/Source/modules/indexeddb/IDBKeyPath.cpp b/Source/modules/indexeddb/IDBKeyPath.cpp
index bc998ca50d851f88a49c6b5d6b2d9c5f5db18ce6..159fa9a451b329490d6e17f2ef8b09fba04a53a8 100644
--- a/Source/modules/indexeddb/IDBKeyPath.cpp
+++ b/Source/modules/indexeddb/IDBKeyPath.cpp
@@ -102,7 +102,7 @@ static inline bool isIdentifierStartCharacter(UChar c)
static inline bool isIdentifierCharacter(UChar c)
{
- return (category(c) & (unicodeLetter | unicodeCombiningMark | unicodeDigit | unicodeConnectorPunctuation)) || (c == '$') || (c == '_') || (c == zeroWidthNonJoiner) || (c == zeroWidthJoiner);
+ return (category(c) & (unicodeLetter | unicodeCombiningMark | unicodeDigit | unicodeConnectorPunctuation)) || (c == '$') || (c == '_') || (c == zeroWidthNonJoinerCharacter) || (c == zeroWidthJoinerCharacter);
}
} // namespace
« no previous file with comments | « Source/modules/accessibility/AXLayoutObject.cpp ('k') | Source/platform/fonts/Character.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698