Index: Source/core/dom/Document.h |
diff --git a/Source/core/dom/Document.h b/Source/core/dom/Document.h |
index 96e4183efe0244a2a4dcad5d3ea0cbb40d79a94a..ec15ff36727f9a33e4778ab027811662c24db25d 100644 |
--- a/Source/core/dom/Document.h |
+++ b/Source/core/dom/Document.h |
@@ -468,11 +468,15 @@ public: |
PassRefPtr<Range> createRange(); |
- PassRefPtr<NodeIterator> createNodeIterator(Node* root, unsigned whatToShow, |
- PassRefPtr<NodeFilter>, bool expandEntityReferences, ExceptionCode&); |
- |
- PassRefPtr<TreeWalker> createTreeWalker(Node* root, unsigned whatToShow, |
- PassRefPtr<NodeFilter>, bool expandEntityReferences, ExceptionCode&); |
+ PassRefPtr<NodeIterator> createNodeIterator(Node* root, ExceptionCode&); |
+ PassRefPtr<NodeIterator> createNodeIterator(Node* root, unsigned whatToShow, ExceptionCode&); |
+ PassRefPtr<NodeIterator> createNodeIterator(Node* root, unsigned whatToShow, PassRefPtr<NodeFilter>, ExceptionCode&); |
+ PassRefPtr<NodeIterator> createNodeIterator(Node* root, unsigned whatToShow, PassRefPtr<NodeFilter>, bool expandEntityReferences, ExceptionCode&); |
+ |
+ PassRefPtr<TreeWalker> createTreeWalker(Node* root, ExceptionCode&); |
+ PassRefPtr<TreeWalker> createTreeWalker(Node* root, unsigned whatToShow, ExceptionCode&); |
+ PassRefPtr<TreeWalker> createTreeWalker(Node* root, unsigned whatToShow, PassRefPtr<NodeFilter>, ExceptionCode&); |
+ PassRefPtr<TreeWalker> createTreeWalker(Node* root, unsigned whatToShow, PassRefPtr<NodeFilter>, bool expandEntityReferences, ExceptionCode&); |
// Special support for editing |
PassRefPtr<CSSStyleDeclaration> createCSSStyleDeclaration(); |