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

Unified Diff: Source/core/html/track/TrackBase.h

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/html/track/TextTrackList.h ('k') | Source/core/loader/appcache/DOMApplicationCache.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/track/TrackBase.h
diff --git a/Source/core/html/track/TrackBase.h b/Source/core/html/track/TrackBase.h
index 1d29c280bc2da3bbc947757f34add7c94b2c8cdb..93c5e519923d87ca192a46f7a3d37909f3717b6f 100644
--- a/Source/core/html/track/TrackBase.h
+++ b/Source/core/html/track/TrackBase.h
@@ -41,9 +41,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);
}
enum Type { BaseTrack, TextTrack, AudioTrack, VideoTrack };
« no previous file with comments | « Source/core/html/track/TextTrackList.h ('k') | Source/core/loader/appcache/DOMApplicationCache.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698