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

Side by Side Diff: third_party/WebKit/Source/platform/fonts/FontFallbackPriority.h

Issue 1613153002: Add a SymbolsIterator to aid with Symbols Segmentation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update emoji data file reference to version 2.0 Created 4 years, 11 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 unified diff | Download patch
OLDNEW
(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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698