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

Unified Diff: Source/core/dom/TreeScope.cpp

Issue 106423003: [oilpan] Rename visit to mark. (Closed) Base URL: svn://svn.chromium.org/blink/branches/oilpan
Patch Set: Fix typo Created 7 years 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: Source/core/dom/TreeScope.cpp
diff --git a/Source/core/dom/TreeScope.cpp b/Source/core/dom/TreeScope.cpp
index 1328d51e91ebdea4597fcc6c2f6cf6735753c999..c82de6aa4578908762596b5fd4c5444a80f98631 100644
--- a/Source/core/dom/TreeScope.cpp
+++ b/Source/core/dom/TreeScope.cpp
@@ -418,10 +418,10 @@ TreeScope* commonTreeScope(Node* nodeA, Node* nodeB)
return nullptr;
}
-void TreeScope::visitWith(Visitor* v) const
+void TreeScope::adjustAndMark(Visitor* v) const
{
ASSERT(this == noDocumentInstance());
- v->visit(this, &TraceTrait<TreeScope>::trace);
+ v->mark(this, &TraceTrait<TreeScope>::trace);
}
} // namespace WebCore

Powered by Google App Engine
This is Rietveld 408576698