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

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

Issue 171843002: [oilpan] Remove GC_INFO_{DEFINE,DECLARE} macros (Closed) Base URL: svn://svn.chromium.org/blink/branches/oilpan
Patch Set: Created 6 years, 10 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
« Source/heap/Visitor.h ('K') | « Source/heap/Visitor.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/heap/tests/HeapTest.cpp
diff --git a/Source/heap/tests/HeapTest.cpp b/Source/heap/tests/HeapTest.cpp
index b357bb9b32efbc62aa9bf5f094953eaba20070a4..0cfa793a6b9d4d7692c4ef525fa7ab887fbb3647 100644
--- a/Source/heap/tests/HeapTest.cpp
+++ b/Source/heap/tests/HeapTest.cpp
@@ -2493,7 +2493,7 @@ class CollectionsEmbeddedClass {
template<typename T> friend struct FinalizerTrait;
- class ObjectReferringToCollections : HeapAllocated<ObjectReferringToCollections> {
+ class ObjectReferringToCollections : public HeapAllocated<ObjectReferringToCollections> {
DECLARE_GC_INFO
public:
void trace(Visitor* visitor)
@@ -2518,7 +2518,7 @@ class CollectionsEmbeddedClass {
}
};
- class ObjectContainingCollections : HeapAllocated<ObjectContainingCollections> {
+ class ObjectContainingCollections : public HeapAllocated<ObjectContainingCollections> {
DECLARE_GC_INFO
public:
IntSet m_set;
« Source/heap/Visitor.h ('K') | « Source/heap/Visitor.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698