Chromium Code Reviews

Unified Diff: Source/core/workers/WorkerContext.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.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « Source/core/workers/AbstractWorker.h ('k') | Source/core/xml/XMLHttpRequest.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/workers/WorkerContext.h
diff --git a/Source/core/workers/WorkerContext.h b/Source/core/workers/WorkerContext.h
index 29965b1cf5ac9e98b63181b46ca4d75fb60d88e9..30e35ee152dcab153199e549411afb1af74b861f 100644
--- a/Source/core/workers/WorkerContext.h
+++ b/Source/core/workers/WorkerContext.h
@@ -134,9 +134,9 @@ namespace WebCore {
virtual const SecurityOrigin* topOrigin() const OVERRIDE { return m_topOrigin.get(); }
- virtual void visitWith(Visitor* visitor) const OVERRIDE
+ virtual void adjustAndMark(Visitor* visitor) const OVERRIDE
{
- visitor->visit(this);
+ visitor->mark(this);
}
virtual void trace(Visitor*) { }
« no previous file with comments | « Source/core/workers/AbstractWorker.h ('k') | Source/core/xml/XMLHttpRequest.h » ('j') | no next file with comments »

Powered by Google App Engine