Chromium Code Reviews

Unified Diff: Source/core/html/track/TextTrackList.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.
Jump to:
View side-by-side diff with in-line comments
Index: Source/core/html/track/TextTrackList.h
diff --git a/Source/core/html/track/TextTrackList.h b/Source/core/html/track/TextTrackList.h
index 6d354e380a5e1369058bd5b39c9536c84caa2477..ffa423421c2e23327f2d3199ebfb59b5159f6969 100644
--- a/Source/core/html/track/TextTrackList.h
+++ b/Source/core/html/track/TextTrackList.h
@@ -54,9 +54,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);
}
unsigned length() const;

Powered by Google App Engine