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

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

Issue 2050123002: Remove OwnPtr from Blink. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: First attempt to land. Created 4 years, 6 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
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 SmallCapsIterator_h 5 #ifndef SmallCapsIterator_h
6 #define SmallCapsIterator_h 6 #define SmallCapsIterator_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 SmallCapsIterator { 17 class PLATFORM_EXPORT SmallCapsIterator {
17 USING_FAST_MALLOC(SmallCapsIterator); 18 USING_FAST_MALLOC(SmallCapsIterator);
18 WTF_MAKE_NONCOPYABLE(SmallCapsIterator); 19 WTF_MAKE_NONCOPYABLE(SmallCapsIterator);
19 public: 20 public:
20 enum SmallCapsBehavior { 21 enum SmallCapsBehavior {
21 SmallCapsSameCase, 22 SmallCapsSameCase,
22 SmallCapsUppercaseNeeded, 23 SmallCapsUppercaseNeeded,
23 SmallCapsInvalid 24 SmallCapsInvalid
24 }; 25 };
25 26
26 SmallCapsIterator(const UChar* buffer, unsigned bufferSize); 27 SmallCapsIterator(const UChar* buffer, unsigned bufferSize);
27 28
28 bool consume(unsigned* capsLimit, SmallCapsBehavior*); 29 bool consume(unsigned* capsLimit, SmallCapsBehavior*);
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 UChar32 m_nextUChar32; 33 UChar32 m_nextUChar32;
33 bool m_atEnd; 34 bool m_atEnd;
34 35
35 SmallCapsBehavior m_currentSmallCapsBehavior; 36 SmallCapsBehavior m_currentSmallCapsBehavior;
36 SmallCapsBehavior m_previousSmallCapsBehavior; 37 SmallCapsBehavior m_previousSmallCapsBehavior;
37 }; 38 };
38 39
39 } // namespace blink 40 } // namespace blink
40 41
41 #endif 42 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698