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

Unified Diff: Source/platform/heap/InlinedGlobalMarkingVisitor.h

Issue 1168683002: Oilpan: Introduce WeakProcessingVisitor (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 6 months 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 | « no previous file | Source/platform/heap/MarkingVisitorImpl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/heap/InlinedGlobalMarkingVisitor.h
diff --git a/Source/platform/heap/InlinedGlobalMarkingVisitor.h b/Source/platform/heap/InlinedGlobalMarkingVisitor.h
index 1bc5ac80bafc779bc94e206dc64314ae8d9a1c73..9d895c079f8895b5b1eae5dbb7a1cbb0c98c868a 100644
--- a/Source/platform/heap/InlinedGlobalMarkingVisitor.h
+++ b/Source/platform/heap/InlinedGlobalMarkingVisitor.h
@@ -19,7 +19,7 @@ public:
explicit InlinedGlobalMarkingVisitor(Visitor* visitor)
: m_visitor(visitor)
{
- ASSERT(visitor->isGlobalMarkingVisitor());
+ ASSERT(visitor->markingMode() == Visitor::GlobalMarking);
}
// Hack to unify interface to visitor->trace().
@@ -58,6 +58,11 @@ protected:
return true;
}
+ inline Visitor::MarkingMode markingMode() const
+ {
+ return m_visitor->markingMode();
+ }
+
#if ENABLE(GC_PROFILING)
inline void recordObjectGraphEdge(const void* objectPointer)
{
« no previous file with comments | « no previous file | Source/platform/heap/MarkingVisitorImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698