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

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

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/NamedFlow.h
diff --git a/Source/core/dom/NamedFlow.h b/Source/core/dom/NamedFlow.h
index 4f7bf01f172c12c3153754a519226d3495aa1162..f7eb5f11534561d14971f625173d6df3a71a8792 100644
--- a/Source/core/dom/NamedFlow.h
+++ b/Source/core/dom/NamedFlow.h
@@ -56,9 +56,9 @@ public:
virtual void trace(Visitor*) { }
- virtual void visitWith(Visitor* visitor) const OVERRIDE
+ virtual void adjustAndMark(Visitor* visitor) const OVERRIDE
{
- visitor->visit(this);
+ visitor->mark(this);
}
const AtomicString& name() const;

Powered by Google App Engine
This is Rietveld 408576698