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

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

Issue 106423003: [oilpan] Rename visit to mark. (Closed) Base URL: svn://svn.chromium.org/blink/branches/oilpan
Patch Set: Address comments. 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
« no previous file with comments | « Source/core/dom/Document.h ('k') | Source/core/dom/ElementShadow.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/Document.cpp
diff --git a/Source/core/dom/Document.cpp b/Source/core/dom/Document.cpp
index 2e82818527b987589d4012f172f0bf9650f17ee9..1d3c56ed1cb32d5ff46b99b81e0a7837145e23c2 100644
--- a/Source/core/dom/Document.cpp
+++ b/Source/core/dom/Document.cpp
@@ -574,9 +574,9 @@ Document::~Document()
InspectorCounters::decrementCounter(InspectorCounters::DocumentCounter);
}
-void Document::visitWith(Visitor* visitor) const
+void Document::adjustAndMark(Visitor* visitor) const
{
- visitor->visit(this);
+ visitor->mark(this);
}
void Document::trace(Visitor* visitor)
« no previous file with comments | « Source/core/dom/Document.h ('k') | Source/core/dom/ElementShadow.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698