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 6b4477dd60f535965686b8ef2ebf32debce63772..091d8851a399f34eebbac69e2e94445757be4719 100644 |
--- a/third_party/WebKit/Source/platform/fonts/Character.h |
+++ b/third_party/WebKit/Source/platform/fonts/Character.h |
@@ -32,6 +32,7 @@ |
#define Character_h |
#include "platform/PlatformExport.h" |
+#include "platform/fonts/CharacterProperty.h" |
#include "platform/text/TextDirection.h" |
#include "platform/text/TextPath.h" |
#include "platform/text/TextRun.h" |
@@ -61,7 +62,6 @@ public: |
|| isInRange(character, 0xE0100, 0xE01EF); // VARIATION SELECTOR-17 to 256 |
} |
- static bool isCJKIdeograph(UChar32); |
static bool isCJKIdeographOrSymbol(UChar32); |
static unsigned expansionOpportunityCount(const LChar*, size_t length, TextDirection, bool& isAfterExpansion, const TextJustify); |
@@ -132,6 +132,8 @@ public: |
static bool isCommonOrInheritedScript(UChar32); |
+private: |
+ static bool hasProperty(UChar32, CharacterProperty); |
}; |
} // namespace blink |