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

Unified Diff: third_party/WebKit/Source/core/dom/NodeIteratorBase.cpp

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/NodeIteratorBase.cpp
diff --git a/third_party/WebKit/Source/core/dom/NodeIteratorBase.cpp b/third_party/WebKit/Source/core/dom/NodeIteratorBase.cpp
index 4acf5222fd902829a8cb45b58c7ec394b52cdda7..b2c338cd33dd3230720781f0eaf86a6384c469f6 100644
--- a/third_party/WebKit/Source/core/dom/NodeIteratorBase.cpp
+++ b/third_party/WebKit/Source/core/dom/NodeIteratorBase.cpp
@@ -25,6 +25,7 @@
#include "core/dom/NodeIteratorBase.h"
#include "bindings/core/v8/ExceptionState.h"
+#include "bindings/core/v8/V8NodeFilterCondition.h"
#include "core/dom/Node.h"
#include "core/dom/NodeFilter.h"
@@ -33,7 +34,7 @@ namespace blink {
NodeIteratorBase::NodeIteratorBase(void* child_this,
Node* root_node,
unsigned what_to_show,
- NodeFilter* node_filter)
+ V8NodeFilterCondition* node_filter)
: root_(root_node),
what_to_show_(what_to_show),
filter_(child_this, node_filter) {}
« no previous file with comments | « third_party/WebKit/Source/core/dom/NodeIteratorBase.h ('k') | third_party/WebKit/Source/core/dom/TreeWalker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698