OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef FontFallbackPriority_h | |
6 #define FontFallbackPriority_h | |
7 | |
8 namespace blink { | |
9 | |
10 enum class FontFallbackPriority { | |
11 // For regular non-symbols text, | |
12 // normal text fallback in FontFallbackIterator | |
13 Text, | |
14 // For non-emoji symbols | |
15 Symbols, | |
16 // For math & technical symbols | |
17 Math, | |
18 // For Emoji text presentation, | |
19 // compare http://unicode.org/Public/emoji/2.0/emoji-data.txt | |
20 EmojiText, | |
21 // For Emoji presentation | |
22 EmojiEmoji, | |
wkorman
2016/01/22 00:50:45
EmojiImage / EmojiIcon is more what I would expect
| |
23 Invalid | |
24 }; | |
25 | |
26 bool isNonTextFallbackPriority(FontFallbackPriority); | |
27 | |
28 }; // namespace blink | |
29 | |
30 #endif | |
OLD | NEW |