| Index: third_party/WebKit/Source/platform/heap/Visitor.h
|
| diff --git a/third_party/WebKit/Source/platform/heap/Visitor.h b/third_party/WebKit/Source/platform/heap/Visitor.h
|
| index 9ddefb948dcc5f2e0f9a1ef07e39139e769f2be7..97a660d3bc85b648b21b8955f9f422bc06b88222 100644
|
| --- a/third_party/WebKit/Source/platform/heap/Visitor.h
|
| +++ b/third_party/WebKit/Source/platform/heap/Visitor.h
|
| @@ -38,6 +38,7 @@
|
| #include "wtf/Forward.h"
|
| #include "wtf/HashTraits.h"
|
| #include "wtf/TypeTraits.h"
|
| +#include <memory>
|
|
|
| namespace blink {
|
|
|
| @@ -261,7 +262,7 @@ public:
|
| WeakProcessing,
|
| };
|
|
|
| - static PassOwnPtr<Visitor> create(ThreadState*, BlinkGC::GCType);
|
| + static std::unique_ptr<Visitor> create(ThreadState*, BlinkGC::GCType);
|
|
|
| virtual ~Visitor();
|
|
|
|
|