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

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

Issue 1613153002: Add a SymbolsIterator to aid with Symbols Segmentation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Magic constants moved, EmojiEmoji enum value explained, formatting 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 SymbolsIterator_h
6 #define SymbolsIterator_h
7
8 #include "platform/fonts/FontFallbackPriority.h"
9 #include "platform/fonts/FontOrientation.h"
10 #include "platform/fonts/ScriptRunIterator.h"
11 #include "platform/fonts/UTF16TextIterator.h"
12 #include "wtf/Allocator.h"
13 #include "wtf/Noncopyable.h"
14
15 namespace blink {
16
17 class PLATFORM_EXPORT SymbolsIterator {
18 USING_FAST_MALLOC(SymbolsIterator);
19 WTF_MAKE_NONCOPYABLE(SymbolsIterator);
20 public:
21 SymbolsIterator(const UChar* buffer, unsigned bufferSize);
22
23 bool consume(unsigned* symbolsLimit, FontFallbackPriority*);
24
25 private:
26 FontFallbackPriority fontFallbackPriorityForCharacter(UChar32);
27
28 OwnPtr<UTF16TextIterator> m_utf16Iterator;
29 unsigned m_bufferSize;
30 UChar32 m_nextChar;
31 bool m_atEnd;
32
33 FontFallbackPriority m_currentFontFallbackPriority;
34 FontFallbackPriority m_previousFontFallbackPriority;
35 };
36
37 } // namespace blink
38
39 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698