| Index: Source/core/dom/TreeWalker.cpp
|
| diff --git a/Source/core/dom/TreeWalker.cpp b/Source/core/dom/TreeWalker.cpp
|
| index 8af0dda36b77334fafb9c05ccda12fa51aa6359d..2d58281ca66783f32d71506cfb753dd9cc1fe94f 100644
|
| --- a/Source/core/dom/TreeWalker.cpp
|
| +++ b/Source/core/dom/TreeWalker.cpp
|
| @@ -43,10 +43,10 @@ TreeWalker::TreeWalker(PassRefPtr<Node> rootNode, unsigned whatToShow, PassRefPt
|
| ScriptWrappable::init(this);
|
| }
|
|
|
| -void TreeWalker::setCurrentNode(PassRefPtr<Node> node, ExceptionState& es)
|
| +void TreeWalker::setCurrentNode(PassRefPtr<Node> node, ExceptionState& exceptionState)
|
| {
|
| if (!node) {
|
| - es.throwDOMException(NotSupportedError, ExceptionMessages::failedToExecute("setCurrentNode", "TreeWalker", "The Node provided is invalid."));
|
| + exceptionState.throwDOMException(NotSupportedError, ExceptionMessages::failedToExecute("setCurrentNode", "TreeWalker", "The Node provided is invalid."));
|
| return;
|
| }
|
| m_current = node;
|
|
|