| Index: Source/core/dom/NodeIteratorBase.h
|
| diff --git a/Source/core/dom/NodeIteratorBase.h b/Source/core/dom/NodeIteratorBase.h
|
| index 0118e3ee1405dc7c8b6805a39e3bf06cf42e9106..cc240f1bd1695614761f091764760d0761380dbc 100644
|
| --- a/Source/core/dom/NodeIteratorBase.h
|
| +++ b/Source/core/dom/NodeIteratorBase.h
|
| @@ -25,11 +25,11 @@
|
| #ifndef NodeIteratorBase_h
|
| #define NodeIteratorBase_h
|
|
|
| -#include "bindings/v8/ScriptState.h"
|
| #include "wtf/RefPtr.h"
|
|
|
| namespace WebCore {
|
|
|
| +class ExceptionState;
|
| class Node;
|
| class NodeFilter;
|
|
|
| @@ -45,7 +45,7 @@ public:
|
|
|
| protected:
|
| NodeIteratorBase(PassRefPtr<Node>, unsigned whatToShow, PassRefPtr<NodeFilter>);
|
| - short acceptNode(ScriptState*, Node*) const;
|
| + short acceptNode(Node*, ExceptionState&) const;
|
|
|
| private:
|
| RefPtr<Node> m_root;
|
|
|