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

Unified Diff: Source/core/dom/NodeIteratorBase.h

Issue 1197723002: NodeFilter acceptNode return type changed to unsigned (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Change sign in the calls for NodeFIlter.acceptNode Created 5 years, 6 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 | « Source/core/dom/NodeFilterCondition.h ('k') | Source/core/dom/NodeIteratorBase.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/NodeIteratorBase.h
diff --git a/Source/core/dom/NodeIteratorBase.h b/Source/core/dom/NodeIteratorBase.h
index d0be579b1dd59df828998a40f6bf4da01af3f480..fdd82ec28c36d8d6d3276cababfdd402a45ff7d8 100644
--- a/Source/core/dom/NodeIteratorBase.h
+++ b/Source/core/dom/NodeIteratorBase.h
@@ -45,7 +45,7 @@ public:
protected:
NodeIteratorBase(PassRefPtrWillBeRawPtr<Node>, unsigned whatToShow, PassRefPtrWillBeRawPtr<NodeFilter>);
- short acceptNode(Node*, ExceptionState&) const;
+ unsigned acceptNode(Node*, ExceptionState&) const;
private:
RefPtrWillBeMember<Node> m_root;
« no previous file with comments | « Source/core/dom/NodeFilterCondition.h ('k') | Source/core/dom/NodeIteratorBase.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698