| Index: third_party/WebKit/Source/platform/fonts/SmallCapsIterator.h
|
| diff --git a/third_party/WebKit/Source/platform/fonts/SmallCapsIterator.h b/third_party/WebKit/Source/platform/fonts/SmallCapsIterator.h
|
| index c262719f4259ee1fa23d40d334c7a1b47abd38de..b689d3a018afa597f2dbb3fa35d6d37cbc3dc579 100644
|
| --- a/third_party/WebKit/Source/platform/fonts/SmallCapsIterator.h
|
| +++ b/third_party/WebKit/Source/platform/fonts/SmallCapsIterator.h
|
| @@ -10,7 +10,6 @@
|
| #include "platform/fonts/UTF16TextIterator.h"
|
| #include "wtf/Allocator.h"
|
| #include "wtf/Noncopyable.h"
|
| -#include <memory>
|
|
|
| namespace blink {
|
|
|
| @@ -28,7 +27,7 @@ public:
|
|
|
| bool consume(unsigned* capsLimit, SmallCapsBehavior*);
|
| private:
|
| - std::unique_ptr<UTF16TextIterator> m_utf16Iterator;
|
| + OwnPtr<UTF16TextIterator> m_utf16Iterator;
|
| unsigned m_bufferSize;
|
| UChar32 m_nextUChar32;
|
| bool m_atEnd;
|
|
|