Chromium Code Reviews

Unified Diff: Source/core/loader/appcache/DOMApplicationCache.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/loader/appcache/DOMApplicationCache.h
diff --git a/Source/core/loader/appcache/DOMApplicationCache.h b/Source/core/loader/appcache/DOMApplicationCache.h
index f676ce14e69502b76973d86e18d4bfc8603b8e06..0ff9211baee6babf7b5d1dec53202a29898a2f78 100644
--- a/Source/core/loader/appcache/DOMApplicationCache.h
+++ b/Source/core/loader/appcache/DOMApplicationCache.h
@@ -51,9 +51,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);
}
virtual void willDestroyGlobalObjectInFrame() OVERRIDE;

Powered by Google App Engine