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

Unified Diff: third_party/WebKit/Source/platform/text/CharacterEmoji.cpp

Issue 2606183002: Fix build of own emoji functions (Closed)
Patch Set: Created 3 years, 12 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 | « third_party/WebKit/Source/platform/BUILD.gn ('k') | third_party/WebKit/Source/platform/text/ICUError.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/platform/text/CharacterEmoji.cpp
diff --git a/third_party/WebKit/Source/platform/text/CharacterEmoji.cpp b/third_party/WebKit/Source/platform/text/CharacterEmoji.cpp
index 3310ac8b6c58be347f96e92899cb52e5e47b8d1a..21bcdf33993504609eb87a3df7bcc0af25651114 100644
--- a/third_party/WebKit/Source/platform/text/CharacterEmoji.cpp
+++ b/third_party/WebKit/Source/platform/text/CharacterEmoji.cpp
@@ -233,7 +233,7 @@ bool Character::isEmojiEmojiDefault(UChar32 ch) {
bool Character::isEmojiModifierBase(UChar32 ch) {
return u_hasBinaryProperty(ch, UCHAR_EMOJI_MODIFIER_BASE);
}
-#endif // defined(USING_SYSTEM_ICU) && (U_ICU_VERSION_MAJOR_NUM <= 56)
+#endif // defined(USING_SYSTEM_ICU) && (U_ICU_VERSION_MAJOR_NUM <= 57)
bool Character::isEmojiKeycapBase(UChar32 ch) {
return (ch >= '0' && ch <= '9') || ch == '#' || ch == '*';
« no previous file with comments | « third_party/WebKit/Source/platform/BUILD.gn ('k') | third_party/WebKit/Source/platform/text/ICUError.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698