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