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

Unified Diff: third_party/WebKit/Source/platform/fonts/SymbolsIterator.h

Issue 2080623002: Revert "Remove OwnPtr from Blink." (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 side-by-side diff with in-line comments
Download patch
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;

Powered by Google App Engine
This is Rietveld 408576698