| Index: third_party/WebKit/Source/bindings/core/v8/V8V0CustomElementLifecycleCallbacks.cpp
|
| diff --git a/third_party/WebKit/Source/bindings/core/v8/V8V0CustomElementLifecycleCallbacks.cpp b/third_party/WebKit/Source/bindings/core/v8/V8V0CustomElementLifecycleCallbacks.cpp
|
| index c5f51b296e400e2105f02c3f1e150927966473ed..b0da31f6176eeffc43d5b5d3eb3683951d3f25f1 100644
|
| --- a/third_party/WebKit/Source/bindings/core/v8/V8V0CustomElementLifecycleCallbacks.cpp
|
| +++ b/third_party/WebKit/Source/bindings/core/v8/V8V0CustomElementLifecycleCallbacks.cpp
|
| @@ -38,7 +38,7 @@
|
| #include "bindings/core/v8/V8HiddenValue.h"
|
| #include "bindings/core/v8/V8PerContextData.h"
|
| #include "core/dom/ExecutionContext.h"
|
| -#include "wtf/PassOwnPtr.h"
|
| +#include <memory>
|
|
|
| namespace blink {
|
|
|
| @@ -123,7 +123,7 @@ V8V0CustomElementLifecycleCallbacks::~V8V0CustomElementLifecycleCallbacks()
|
| {
|
| }
|
|
|
| -bool V8V0CustomElementLifecycleCallbacks::setBinding(PassOwnPtr<V0CustomElementBinding> binding)
|
| +bool V8V0CustomElementLifecycleCallbacks::setBinding(std::unique_ptr<V0CustomElementBinding> binding)
|
| {
|
| V8PerContextData* perContextData = creationContextData();
|
| if (!perContextData)
|
|
|