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

Unified Diff: third_party/WebKit/Source/core/dom/Document.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
« no previous file with comments | « third_party/WebKit/Source/core/dom/BUILD.gn ('k') | third_party/WebKit/Source/core/dom/Document.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/dom/Document.h
diff --git a/third_party/WebKit/Source/core/dom/Document.h b/third_party/WebKit/Source/core/dom/Document.h
index 88aed3ed76f0507dc6deba642270607738918651..8c9dd3a9a1e9935ca863906e409475fbc1d9e5c5 100644
--- a/third_party/WebKit/Source/core/dom/Document.h
+++ b/third_party/WebKit/Source/core/dom/Document.h
@@ -135,7 +135,6 @@ class LocalFrame;
class Location;
class MediaQueryListListener;
class MediaQueryMatcher;
-class NodeFilter;
class NodeIterator;
class NthIndexCache;
class OriginAccessEntry;
@@ -169,6 +168,7 @@ class Touch;
class TouchList;
class TransformSource;
class TreeWalker;
+class V8NodeFilterCondition;
class VisitedLinkState;
class WebMouseEvent;
struct AnnotatedRegionValue;
@@ -484,8 +484,10 @@ class CORE_EXPORT Document : public ContainerNode,
NodeIterator* createNodeIterator(Node* root,
unsigned what_to_show,
- NodeFilter*);
- TreeWalker* createTreeWalker(Node* root, unsigned what_to_show, NodeFilter*);
+ V8NodeFilterCondition*);
+ TreeWalker* createTreeWalker(Node* root,
+ unsigned what_to_show,
+ V8NodeFilterCondition*);
// Special support for editing
Text* CreateEditingTextNode(const String&);
« no previous file with comments | « third_party/WebKit/Source/core/dom/BUILD.gn ('k') | third_party/WebKit/Source/core/dom/Document.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698