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

Unified Diff: Source/platform/heap/HeapTest.cpp

Issue 804303002: Implement Visitor::isGlobalMarkingVisitor (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 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
Index: Source/platform/heap/HeapTest.cpp
diff --git a/Source/platform/heap/HeapTest.cpp b/Source/platform/heap/HeapTest.cpp
index 66225e66123fce69cd68e834a836e21008a8b43c..6af5c6ef25cb87e9522100e05b521c8af935adc3 100644
--- a/Source/platform/heap/HeapTest.cpp
+++ b/Source/platform/heap/HeapTest.cpp
@@ -235,7 +235,8 @@ private:
class CountingVisitor : public Visitor {
public:
CountingVisitor()
- : m_count(0)
+ : Visitor(Visitor::GenericVisitorType)
+ , m_count(0)
{
}
@@ -882,7 +883,8 @@ int RefCountedAndGarbageCollected2::s_destructorCalls = 0;
class RefCountedGarbageCollectedVisitor : public CountingVisitor {
public:
RefCountedGarbageCollectedVisitor(int expected, void** objects)
- : m_count(0)
+ : Visitor(Visitor::GenericVisitorType)
+ , m_count(0)
, m_expectedCount(expected)
, m_expectedObjects(objects)
{

Powered by Google App Engine
This is Rietveld 408576698