Index: third_party/WebKit/Source/core/html/parser/HTMLParserScheduler.h |
diff --git a/third_party/WebKit/Source/core/html/parser/HTMLParserScheduler.h b/third_party/WebKit/Source/core/html/parser/HTMLParserScheduler.h |
index 2651e5e898c71c0f8a07e9dcab87bc6cebcde754..e8bd9af94c3872f307b430e6cf0e0ad0fdef3a2c 100644 |
--- a/third_party/WebKit/Source/core/html/parser/HTMLParserScheduler.h |
+++ b/third_party/WebKit/Source/core/html/parser/HTMLParserScheduler.h |
@@ -29,8 +29,8 @@ |
#include "core/html/parser/NestingLevelIncrementer.h" |
#include "platform/scheduler/CancellableTaskFactory.h" |
#include "wtf/Allocator.h" |
-#include "wtf/PassOwnPtr.h" |
#include "wtf/RefPtr.h" |
+#include <memory> |
namespace blink { |
@@ -96,9 +96,9 @@ private: |
void continueParsing(); |
Member<HTMLDocumentParser> m_parser; |
- OwnPtr<WebTaskRunner> m_loadingTaskRunner; |
+ std::unique_ptr<WebTaskRunner> m_loadingTaskRunner; |
- OwnPtr<CancellableTaskFactory> m_cancellableContinueParse; |
+ std::unique_ptr<CancellableTaskFactory> m_cancellableContinueParse; |
bool m_isSuspendedWithActiveTimer; |
}; |