| Index: third_party/WebKit/Source/platform/heap/TraceTraits.h
|
| diff --git a/third_party/WebKit/Source/platform/heap/TraceTraits.h b/third_party/WebKit/Source/platform/heap/TraceTraits.h
|
| index fb5b1a0c01570df61e788b209b316c57da4f45fa..544e76248151a10cffb4f0f6fa8f2671a2f7f367 100644
|
| --- a/third_party/WebKit/Source/platform/heap/TraceTraits.h
|
| +++ b/third_party/WebKit/Source/platform/heap/TraceTraits.h
|
| @@ -108,15 +108,6 @@ class AdjustAndMarkTrait<T, true> {
|
| static void mark(VisitorDispatcher visitor, const T* self) {
|
| if (!self)
|
| return;
|
| -
|
| - // If you hit this ASSERT, it means that there is a dangling pointer
|
| - // from a live thread heap to a dead thread heap. We must eliminate
|
| - // the dangling pointer.
|
| - // Release builds don't have the ASSERT, but it is OK because
|
| - // release builds will crash at the following self->adjustAndMark
|
| - // because all the entries of the orphaned arenas are zeroed out and
|
| - // thus the item does not have a valid vtable.
|
| - ASSERT(!pageFromObject(self)->orphaned());
|
| self->adjustAndMark(visitor);
|
| }
|
| };
|
|
|