diff options
-rw-r--r-- | WebKit/android/icu/unicode/ucnv.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/WebKit/android/icu/unicode/ucnv.cpp b/WebKit/android/icu/unicode/ucnv.cpp index 1963dd2..1b40573 100644 --- a/WebKit/android/icu/unicode/ucnv.cpp +++ b/WebKit/android/icu/unicode/ucnv.cpp @@ -40,8 +40,9 @@ namespace android { U_STABLE UConverter* U_EXPORT2 ucnv_open_emoji(const char *converterName, UErrorCode *err) { if (EmojiFont::IsAvailable()) { - if (strcmp(converterName, "Shift_JIS") == 0) - converterName = "docomo-emoji"; + if (strcmp(converterName, "Shift_JIS") == 0) { + converterName = EmojiFont::GetShiftJisConverterName(); + } } return ucnv_open(converterName, err); } |