| Index: third_party/WebKit/Source/bindings/core/v8/V0CustomElementBinding.h
|
| diff --git a/third_party/WebKit/Source/bindings/core/v8/V0CustomElementBinding.h b/third_party/WebKit/Source/bindings/core/v8/V0CustomElementBinding.h
|
| index 2f5ef1cb48c91d81d3eb069b4eeec40f20b7e30e..ff26119def17295273b9f0a531a266c61d1fed37 100644
|
| --- a/third_party/WebKit/Source/bindings/core/v8/V0CustomElementBinding.h
|
| +++ b/third_party/WebKit/Source/bindings/core/v8/V0CustomElementBinding.h
|
| @@ -33,7 +33,7 @@
|
|
|
| #include "bindings/core/v8/ScopedPersistent.h"
|
| #include "wtf/Allocator.h"
|
| -#include "wtf/PassOwnPtr.h"
|
| +#include <memory>
|
| #include <v8.h>
|
|
|
| namespace blink {
|
| @@ -41,7 +41,7 @@ namespace blink {
|
| class V0CustomElementBinding {
|
| USING_FAST_MALLOC(V0CustomElementBinding);
|
| public:
|
| - static PassOwnPtr<V0CustomElementBinding> create(v8::Isolate*, v8::Local<v8::Object> prototype);
|
| + static std::unique_ptr<V0CustomElementBinding> create(v8::Isolate*, v8::Local<v8::Object> prototype);
|
| ~V0CustomElementBinding();
|
|
|
| private:
|
|
|