| Index: Source/web/WebFrameImpl.cpp
|
| diff --git a/Source/web/WebFrameImpl.cpp b/Source/web/WebFrameImpl.cpp
|
| index 9cde30346f708aa69c592f63f3f1279b46cf274c..b6f17c9f4872723dbb07f074fdc68dc7ce61c842 100644
|
| --- a/Source/web/WebFrameImpl.cpp
|
| +++ b/Source/web/WebFrameImpl.cpp
|
| @@ -709,11 +709,11 @@ WebFrame* WebFrameImpl::findChildByExpression(const WebString& xpath) const
|
|
|
| Document* document = frame()->document();
|
|
|
| - RefPtr<XPathResult> xpathResult = DocumentXPathEvaluator::evaluate(document, xpath, document, 0, XPathResult::ORDERED_NODE_ITERATOR_TYPE, 0, IGNORE_EXCEPTION_STATE);
|
| + RefPtr<XPathResult> xpathResult = DocumentXPathEvaluator::evaluate(document, xpath, document, 0, XPathResult::ORDERED_NODE_ITERATOR_TYPE, 0, IGNORE_EXCEPTION);
|
| if (!xpathResult)
|
| return 0;
|
|
|
| - Node* node = xpathResult->iterateNext(IGNORE_EXCEPTION_STATE);
|
| + Node* node = xpathResult->iterateNext(IGNORE_EXCEPTION);
|
| if (!node || !node->isFrameOwnerElement())
|
| return 0;
|
| HTMLFrameOwnerElement* frameElement = toFrameOwnerElement(node);
|
| @@ -2362,7 +2362,7 @@ void WebFrameImpl::addMarker(Range* range, bool activeMatch)
|
|
|
| void WebFrameImpl::setMarkerActive(Range* range, bool active)
|
| {
|
| - if (!range || range->collapsed(IGNORE_EXCEPTION_STATE))
|
| + if (!range || range->collapsed(IGNORE_EXCEPTION))
|
| return;
|
| frame()->document()->markers()->setMarkersActive(range, active);
|
| }
|
|
|