| Index: Source/core/xml/DocumentXPathEvaluator.cpp
|
| diff --git a/Source/core/xml/DocumentXPathEvaluator.cpp b/Source/core/xml/DocumentXPathEvaluator.cpp
|
| index 6f32981e40c91d2541394308a2c98e1d83e92db6..7c162b7e16cb8963254f0d1dd98910f1b38923ce 100644
|
| --- a/Source/core/xml/DocumentXPathEvaluator.cpp
|
| +++ b/Source/core/xml/DocumentXPathEvaluator.cpp
|
| @@ -65,12 +65,12 @@ PassRefPtrWillBeRawPtr<XPathNSResolver> DocumentXPathEvaluator::createNSResolver
|
|
|
| PassRefPtrWillBeRawPtr<XPathResult> DocumentXPathEvaluator::evaluate(DocumentSupplementable& document, const String& expression,
|
| Node* contextNode, PassRefPtrWillBeRawPtr<XPathNSResolver> resolver, unsigned short type,
|
| - XPathResult* result, ExceptionState& exceptionState)
|
| + const ScriptValue&, ExceptionState& exceptionState)
|
| {
|
| DocumentXPathEvaluator& suplement = from(document);
|
| if (!suplement.m_xpathEvaluator)
|
| suplement.m_xpathEvaluator = XPathEvaluator::create();
|
| - return suplement.m_xpathEvaluator->evaluate(expression, contextNode, resolver, type, result, exceptionState);
|
| + return suplement.m_xpathEvaluator->evaluate(expression, contextNode, resolver, type, ScriptValue(), exceptionState);
|
| }
|
|
|
| DEFINE_TRACE(DocumentXPathEvaluator)
|
|
|