Index: third_party/WebKit/Source/core/dom/NodeIterator.h |
diff --git a/third_party/WebKit/Source/core/dom/NodeIterator.h b/third_party/WebKit/Source/core/dom/NodeIterator.h |
index e8c1c0c34fd15150c96ea5e042cc5b33f39d5f4d..4c44d48723c1a52f0ffb752b58e0c398056f0cdb 100644 |
--- a/third_party/WebKit/Source/core/dom/NodeIterator.h |
+++ b/third_party/WebKit/Source/core/dom/NodeIterator.h |
@@ -43,7 +43,7 @@ class NodeIterator final : public GarbageCollected<NodeIterator>, |
public: |
static NodeIterator* Create(Node* root_node, |
unsigned what_to_show, |
- NodeFilter* filter) { |
+ V8NodeFilterCondition* filter) { |
return new NodeIterator(root_node, what_to_show, filter); |
} |
@@ -64,7 +64,7 @@ class NodeIterator final : public GarbageCollected<NodeIterator>, |
DECLARE_VIRTUAL_TRACE_WRAPPERS(); |
private: |
- NodeIterator(Node*, unsigned what_to_show, NodeFilter*); |
+ NodeIterator(Node*, unsigned what_to_show, V8NodeFilterCondition*); |
class NodePointer { |
DISALLOW_NEW(); |