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

Unified Diff: third_party/WebKit/Source/core/dom/TreeWalker.h

Issue 2840163002: DOM: NodeIterator.filter and TreeWalker.filter should return values which were specified to createN… (Closed)
Patch Set: Move ToV8() to ToV8ForCore.h, etc. Created 3 years, 8 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: third_party/WebKit/Source/core/dom/TreeWalker.h
diff --git a/third_party/WebKit/Source/core/dom/TreeWalker.h b/third_party/WebKit/Source/core/dom/TreeWalker.h
index 8c783785402e62fd693322ef5b360de203c17263..348cb4c42d9f0fb7f9f77d83500ac858000c8f31 100644
--- a/third_party/WebKit/Source/core/dom/TreeWalker.h
+++ b/third_party/WebKit/Source/core/dom/TreeWalker.h
@@ -43,7 +43,7 @@ class TreeWalker final : public GarbageCollected<TreeWalker>,
public:
static TreeWalker* Create(Node* root_node,
unsigned what_to_show,
- NodeFilter* filter) {
+ V8NodeFilterCondition* filter) {
return new TreeWalker(root_node, what_to_show, filter);
}
@@ -63,7 +63,7 @@ class TreeWalker final : public GarbageCollected<TreeWalker>,
DECLARE_VIRTUAL_TRACE_WRAPPERS();
private:
- TreeWalker(Node*, unsigned what_to_show, NodeFilter*);
+ TreeWalker(Node*, unsigned what_to_show, V8NodeFilterCondition*);
Node* SetCurrent(Node*);
« no previous file with comments | « third_party/WebKit/Source/core/dom/NodeIteratorBase.cpp ('k') | third_party/WebKit/Source/core/dom/TreeWalker.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698