Index: Source/bindings/core/v8/V8Binding.cpp |
diff --git a/Source/bindings/core/v8/V8Binding.cpp b/Source/bindings/core/v8/V8Binding.cpp |
index 6eacca6d18be06da4bce891f7bbd6cf6ebb3b497..44a384f92639a2c262e17877ab9aaff40a7899f2 100644 |
--- a/Source/bindings/core/v8/V8Binding.cpp |
+++ b/Source/bindings/core/v8/V8Binding.cpp |
@@ -685,9 +685,9 @@ String toUSVString(v8::Handle<v8::Value> value, ExceptionState& exceptionState) |
return replaceUnmatchedSurrogates(x); |
} |
-PassRefPtrWillBeRawPtr<XPathNSResolver> toXPathNSResolver(v8::Isolate* isolate, v8::Handle<v8::Value> value) |
+XPathNSResolver* toXPathNSResolver(v8::Isolate* isolate, v8::Handle<v8::Value> value) |
{ |
- RefPtrWillBeRawPtr<XPathNSResolver> resolver = nullptr; |
+ XPathNSResolver* resolver = nullptr; |
if (V8XPathNSResolver::hasInstance(value, isolate)) |
resolver = V8XPathNSResolver::toImpl(v8::Handle<v8::Object>::Cast(value)); |
else if (value->IsObject()) |