| Index: third_party/WebKit/Source/platform/fonts/SymbolsIterator.h
|
| diff --git a/third_party/WebKit/Source/platform/fonts/SymbolsIterator.h b/third_party/WebKit/Source/platform/fonts/SymbolsIterator.h
|
| index 01dcdb573c7127df6c651847d11f0569b89a92bc..db5ccc0960953215040f3412c0d5ba35e278f759 100644
|
| --- a/third_party/WebKit/Source/platform/fonts/SymbolsIterator.h
|
| +++ b/third_party/WebKit/Source/platform/fonts/SymbolsIterator.h
|
| @@ -11,7 +11,6 @@
|
| #include "platform/fonts/UTF16TextIterator.h"
|
| #include "wtf/Allocator.h"
|
| #include "wtf/Noncopyable.h"
|
| -#include <memory>
|
|
|
| namespace blink {
|
|
|
| @@ -26,7 +25,7 @@ public:
|
| private:
|
| FontFallbackPriority fontFallbackPriorityForCharacter(UChar32);
|
|
|
| - std::unique_ptr<UTF16TextIterator> m_utf16Iterator;
|
| + OwnPtr<UTF16TextIterator> m_utf16Iterator;
|
| unsigned m_bufferSize;
|
| UChar32 m_nextChar;
|
| bool m_atEnd;
|
|
|