Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(601)

Unified Diff: Source/core/dom/NodeIteratorBase.h

Issue 225783003: Remove ScriptState from NodeIterator, NodeFilter, NodeFilterCondition and TreeWalker (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/dom/NodeIterator.idl ('k') | Source/core/dom/NodeIteratorBase.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « Source/core/dom/NodeIterator.idl ('k') | Source/core/dom/NodeIteratorBase.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698