Index: third_party/WebKit/Source/core/html/parser/HTMLParserThread.h |
diff --git a/third_party/WebKit/Source/core/html/parser/HTMLParserThread.h b/third_party/WebKit/Source/core/html/parser/HTMLParserThread.h |
index 308229a86ce8b5399dd53126c520e62212e4f732..3a595b79be49c5902698815462c01aa211b08cd5 100644 |
--- a/third_party/WebKit/Source/core/html/parser/HTMLParserThread.h |
+++ b/third_party/WebKit/Source/core/html/parser/HTMLParserThread.h |
@@ -36,7 +36,8 @@ |
#include "platform/WebThreadSupportingGC.h" |
#include "wtf/Allocator.h" |
#include "wtf/Functional.h" |
-#include <memory> |
+#include "wtf/OwnPtr.h" |
+#include "wtf/PassOwnPtr.h" |
namespace blink { |
@@ -57,7 +58,7 @@ private: |
void setupHTMLParserThread(); |
void cleanupHTMLParserThread(WaitableEvent*); |
- std::unique_ptr<WebThreadSupportingGC> m_thread; |
+ OwnPtr<WebThreadSupportingGC> m_thread; |
}; |
} // namespace blink |