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

Unified Diff: third_party/WebKit/Source/core/dom/shadow/FlatTreeTraversal.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
« no previous file with comments | « third_party/WebKit/Source/core/dom/shadow/FlatTreeTraversal.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/dom/shadow/FlatTreeTraversal.cpp
diff --git a/third_party/WebKit/Source/core/dom/shadow/FlatTreeTraversal.cpp b/third_party/WebKit/Source/core/dom/shadow/FlatTreeTraversal.cpp
index f2a05a3b0fefa6471fe9a7003b8f7fc9251c5ed2..df773c515861aa050a779e35f59928fbef4ba920 100644
--- a/third_party/WebKit/Source/core/dom/shadow/FlatTreeTraversal.cpp
+++ b/third_party/WebKit/Source/core/dom/shadow/FlatTreeTraversal.cpp
@@ -288,8 +288,9 @@ Node* FlatTreeTraversal::previousSkippingChildren(const Node& node) {
return traversePreviousAncestorSibling(node);
}
-static Node* previousAncestorSiblingPostOrder(const Node& current,
- const Node* stayWithin) {
+Node* FlatTreeTraversal::previousAncestorSiblingPostOrder(
+ const Node& current,
+ const Node* stayWithin) {
DCHECK(!FlatTreeTraversal::previousSibling(current));
for (Node* parent = FlatTreeTraversal::parent(current); parent;
parent = FlatTreeTraversal::parent(*parent)) {
« no previous file with comments | « third_party/WebKit/Source/core/dom/shadow/FlatTreeTraversal.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698