| Index: Source/platform/heap/HeapTest.cpp
|
| diff --git a/Source/platform/heap/HeapTest.cpp b/Source/platform/heap/HeapTest.cpp
|
| index 5cd31e237dc13d698bc85dd9c93248ba42992951..3f2451e527b88da61baad42ecc3186fccd4fa0a2 100644
|
| --- a/Source/platform/heap/HeapTest.cpp
|
| +++ b/Source/platform/heap/HeapTest.cpp
|
| @@ -1255,9 +1255,7 @@ public:
|
|
|
| DEFINE_INLINE_TRACE()
|
| {
|
| -#if ENABLE_OILPAN
|
| visitor->trace(m_backPointer);
|
| -#endif
|
| }
|
|
|
| static int s_aliveCount;
|
| @@ -1281,7 +1279,7 @@ public:
|
|
|
| virtual ~SuperClass()
|
| {
|
| -#if !ENABLE_OILPAN
|
| +#if !ENABLE(OILPAN)
|
| m_pointsBack->setBackPointer(0);
|
| #endif
|
| --s_aliveCount;
|
| @@ -1297,9 +1295,7 @@ public:
|
|
|
| DEFINE_INLINE_VIRTUAL_TRACE()
|
| {
|
| -#if ENABLE_OILPAN
|
| visitor->trace(m_pointsBack);
|
| -#endif
|
| }
|
|
|
| PointsBack* pointsBack() const { return m_pointsBack.get(); }
|
| @@ -1344,10 +1340,8 @@ public:
|
|
|
| DEFINE_INLINE_VIRTUAL_TRACE()
|
| {
|
| -#if ENABLE_OILPAN
|
| - SuperClass::trace(visitor);
|
| visitor->trace(m_data);
|
| -#endif
|
| + SuperClass::trace(visitor);
|
| }
|
|
|
| static int s_aliveCount;
|
|
|