| Index: Source/bindings/core/v8/custom/V8CustomXPathNSResolver.cpp
|
| diff --git a/Source/bindings/core/v8/custom/V8CustomXPathNSResolver.cpp b/Source/bindings/core/v8/custom/V8CustomXPathNSResolver.cpp
|
| index 6e2d5ff8a9d10f2a80708a8468ac995061fb5bc2..896ec404e5484d447432edd0ee3d0f704e46c5a0 100644
|
| --- a/Source/bindings/core/v8/custom/V8CustomXPathNSResolver.cpp
|
| +++ b/Source/bindings/core/v8/custom/V8CustomXPathNSResolver.cpp
|
| @@ -43,9 +43,9 @@
|
|
|
| namespace blink {
|
|
|
| -PassRefPtrWillBeRawPtr<V8CustomXPathNSResolver> V8CustomXPathNSResolver::create(ScriptState* scriptState, v8::Local<v8::Object> resolver)
|
| +V8CustomXPathNSResolver* V8CustomXPathNSResolver::create(ScriptState* scriptState, v8::Local<v8::Object> resolver)
|
| {
|
| - return adoptRefWillBeNoop(new V8CustomXPathNSResolver(scriptState, resolver));
|
| + return new V8CustomXPathNSResolver(scriptState, resolver);
|
| }
|
|
|
| V8CustomXPathNSResolver::V8CustomXPathNSResolver(ScriptState* scriptState, v8::Local<v8::Object> resolver)
|
|
|