OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef OrientationIterator_h | 5 #ifndef OrientationIterator_h |
6 #define OrientationIterator_h | 6 #define OrientationIterator_h |
7 | 7 |
8 #include "platform/fonts/FontOrientation.h" | 8 #include "platform/fonts/FontOrientation.h" |
9 #include "platform/fonts/ScriptRunIterator.h" | 9 #include "platform/fonts/ScriptRunIterator.h" |
10 #include "platform/fonts/UTF16TextIterator.h" | 10 #include "platform/fonts/UTF16TextIterator.h" |
11 #include "wtf/Allocator.h" | 11 #include "wtf/Allocator.h" |
12 #include "wtf/Noncopyable.h" | 12 #include "wtf/Noncopyable.h" |
| 13 #include <memory> |
13 | 14 |
14 namespace blink { | 15 namespace blink { |
15 | 16 |
16 class PLATFORM_EXPORT OrientationIterator { | 17 class PLATFORM_EXPORT OrientationIterator { |
17 USING_FAST_MALLOC(OrientationIterator); | 18 USING_FAST_MALLOC(OrientationIterator); |
18 WTF_MAKE_NONCOPYABLE(OrientationIterator); | 19 WTF_MAKE_NONCOPYABLE(OrientationIterator); |
19 public: | 20 public: |
20 enum RenderOrientation { | 21 enum RenderOrientation { |
21 OrientationKeep, | 22 OrientationKeep, |
22 OrientationRotateSideways, | 23 OrientationRotateSideways, |
23 OrientationInvalid | 24 OrientationInvalid |
24 }; | 25 }; |
25 | 26 |
26 OrientationIterator(const UChar* buffer, unsigned bufferSize, FontOrientatio
n runOrientation); | 27 OrientationIterator(const UChar* buffer, unsigned bufferSize, FontOrientatio
n runOrientation); |
27 | 28 |
28 bool consume(unsigned* orientationLimit, RenderOrientation*); | 29 bool consume(unsigned* orientationLimit, RenderOrientation*); |
29 private: | 30 private: |
30 OwnPtr<UTF16TextIterator> m_utf16Iterator; | 31 std::unique_ptr<UTF16TextIterator> m_utf16Iterator; |
31 unsigned m_bufferSize; | 32 unsigned m_bufferSize; |
32 bool m_atEnd; | 33 bool m_atEnd; |
33 }; | 34 }; |
34 | 35 |
35 } // namespace blink | 36 } // namespace blink |
36 | 37 |
37 #endif | 38 #endif |
OLD | NEW |