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

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: rebased 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
« no previous file with comments | « 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 9f1e6777a4b8d784db16a6207c92d8dbdf980e97..d30b7a64ddfaf57580108021a354474535acf595 100644
--- a/Source/heap/tests/HeapTest.cpp
+++ b/Source/heap/tests/HeapTest.cpp
@@ -2494,7 +2494,7 @@ class CollectionsEmbeddedClass {
template<typename T> friend struct FinalizerTrait;
- class ObjectReferringToCollections : GarbageCollected<ObjectReferringToCollections> {
+ class ObjectReferringToCollections : public GarbageCollected<ObjectReferringToCollections> {
DECLARE_GC_INFO
public:
void trace(Visitor* visitor)
@@ -2519,7 +2519,7 @@ class CollectionsEmbeddedClass {
}
};
- class ObjectContainingCollections : GarbageCollected<ObjectContainingCollections> {
+ class ObjectContainingCollections : public GarbageCollected<ObjectContainingCollections> {
DECLARE_GC_INFO
public:
IntSet m_set;
« no previous file with comments | « Source/heap/Visitor.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698