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

Unified Diff: Source/core/dom/NodeIterator.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
Index: Source/core/dom/NodeIterator.h
diff --git a/Source/core/dom/NodeIterator.h b/Source/core/dom/NodeIterator.h
index fcbe77b96d161baf67d9ef400da30348ab0eeb1d..685800b9d4e5021b4182207124a4e528f6b6db95 100644
--- a/Source/core/dom/NodeIterator.h
+++ b/Source/core/dom/NodeIterator.h
@@ -43,8 +43,8 @@ public:
}
~NodeIterator();
- PassRefPtr<Node> nextNode(ScriptState*, ExceptionState&);
- PassRefPtr<Node> previousNode(ScriptState*, ExceptionState&);
+ PassRefPtr<Node> nextNode(ExceptionState&);
+ PassRefPtr<Node> previousNode(ExceptionState&);
void detach();
Node* referenceNode() const { return m_referenceNode.node.get(); }

Powered by Google App Engine
This is Rietveld 408576698