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

Unified Diff: third_party/WebKit/Source/core/dom/NodeTraversal.cpp

Issue 2802723002: Rename duplicate symbols inside core/dom (Closed)
Patch Set: 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
Index: third_party/WebKit/Source/core/dom/NodeTraversal.cpp
diff --git a/third_party/WebKit/Source/core/dom/NodeTraversal.cpp b/third_party/WebKit/Source/core/dom/NodeTraversal.cpp
index a38b7de06fe3bfbf017cbb5ffd366616ade619d0..d750eb14fe6a39423278fad1091ac8b91596fda0 100644
--- a/third_party/WebKit/Source/core/dom/NodeTraversal.cpp
+++ b/third_party/WebKit/Source/core/dom/NodeTraversal.cpp
@@ -152,8 +152,8 @@ Node* NodeTraversal::nextPostOrder(const Node& current,
return next;
}
-static Node* previousAncestorSiblingPostOrder(const Node& current,
- const Node* stayWithin) {
+Node* NodeTraversal::previousAncestorSiblingPostOrder(const Node& current,
+ const Node* stayWithin) {
DCHECK(!current.previousSibling());
for (Node& parent : NodeTraversal::ancestorsOf(current)) {
if (parent == stayWithin)
« no previous file with comments | « third_party/WebKit/Source/core/dom/NodeTraversal.h ('k') | third_party/WebKit/Source/core/dom/shadow/FlatTreeTraversal.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698