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