| Index: third_party/WebKit/Source/core/dom/Document.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/Document.cpp b/third_party/WebKit/Source/core/dom/Document.cpp
|
| index d6b5b4700705f08f2ee0726aef0bda321e5cc65b..e7dd89662dd23e93746204a5a1ad52d3ddb41a5e 100644
|
| --- a/third_party/WebKit/Source/core/dom/Document.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/Document.cpp
|
| @@ -1721,14 +1721,14 @@ Range* Document::createRange() {
|
|
|
| NodeIterator* Document::createNodeIterator(Node* root,
|
| unsigned what_to_show,
|
| - NodeFilter* filter) {
|
| + V8NodeFilterCondition* filter) {
|
| DCHECK(root);
|
| return NodeIterator::Create(root, what_to_show, filter);
|
| }
|
|
|
| TreeWalker* Document::createTreeWalker(Node* root,
|
| unsigned what_to_show,
|
| - NodeFilter* filter) {
|
| + V8NodeFilterCondition* filter) {
|
| DCHECK(root);
|
| return TreeWalker::Create(root, what_to_show, filter);
|
| }
|
|
|