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&); |