| Index: third_party/WebKit/Source/platform/heap/HeapPage.cpp
|
| diff --git a/third_party/WebKit/Source/platform/heap/HeapPage.cpp b/third_party/WebKit/Source/platform/heap/HeapPage.cpp
|
| index 47d5a09141831620ad5e12c7b4aadcf892c837f0..3b48ca8fa9793beacc6257de2ed1cec77e4059ed 100644
|
| --- a/third_party/WebKit/Source/platform/heap/HeapPage.cpp
|
| +++ b/third_party/WebKit/Source/platform/heap/HeapPage.cpp
|
| @@ -225,13 +225,6 @@ size_t BaseArena::objectPayloadSizeForTesting() {
|
| return objectPayloadSize;
|
| }
|
|
|
| -void BaseArena::prepareHeapForTermination() {
|
| - ASSERT(!m_firstUnsweptPage);
|
| - for (BasePage* page = m_firstPage; page; page = page->next()) {
|
| - page->setTerminating();
|
| - }
|
| -}
|
| -
|
| void BaseArena::prepareForSweep() {
|
| ASSERT(getThreadState()->isInGC());
|
| ASSERT(!m_firstUnsweptPage);
|
| @@ -1242,7 +1235,6 @@ BasePage::BasePage(PageMemory* storage, BaseArena* arena)
|
| : m_storage(storage),
|
| m_arena(arena),
|
| m_next(nullptr),
|
| - m_terminating(false),
|
| m_swept(true) {
|
| ASSERT(isPageHeaderAddress(reinterpret_cast<Address>(this)));
|
| }
|
|
|