| Index: third_party/WebKit/Source/platform/fonts/Character.h
|
| diff --git a/third_party/WebKit/Source/platform/fonts/Character.h b/third_party/WebKit/Source/platform/fonts/Character.h
|
| index 0a45145b1dede8a4c6069401e58e8c51362fe6ec..50c3ea3020a3f03adc92a4473ffb19108d7a5f28 100644
|
| --- a/third_party/WebKit/Source/platform/fonts/Character.h
|
| +++ b/third_party/WebKit/Source/platform/fonts/Character.h
|
| @@ -63,6 +63,11 @@ public:
|
| }
|
|
|
| static bool isCJKIdeographOrSymbol(UChar32);
|
| + static bool isCJKIdeographOrSymbolBase(UChar32 c)
|
| + {
|
| + return isCJKIdeographOrSymbol(c)
|
| + && !(U_GET_GC_MASK(c) & (U_GC_M_MASK | U_GC_LM_MASK | U_GC_SK_MASK));
|
| + }
|
|
|
| static unsigned expansionOpportunityCount(const LChar*, size_t length, TextDirection, bool& isAfterExpansion, const TextJustify);
|
| static unsigned expansionOpportunityCount(const UChar*, size_t length, TextDirection, bool& isAfterExpansion, const TextJustify);
|
|
|