| Index: Source/core/platform/Partitions.cpp
|
| diff --git a/Source/core/platform/Partitions.cpp b/Source/core/platform/Partitions.cpp
|
| index 635025a85d38e02568cdb48dcde0e222e9d757b8..a5c54f4f56ed9e55e464e4360be6ec5c3fdb1ead 100644
|
| --- a/Source/core/platform/Partitions.cpp
|
| +++ b/Source/core/platform/Partitions.cpp
|
| @@ -35,10 +35,12 @@
|
| namespace WebCore {
|
|
|
| PartitionRoot Partitions::m_objectModelRoot;
|
| +PartitionRoot Partitions::m_renderingRoot;
|
|
|
| void Partitions::init()
|
| {
|
| partitionAllocInit(&m_objectModelRoot);
|
| + partitionAllocInit(&m_renderingRoot);
|
| }
|
|
|
| void Partitions::shutdown()
|
| @@ -47,6 +49,7 @@ void Partitions::shutdown()
|
| // to very hard to diagnose ASSERTs, so it's best to leave leak checking for
|
| // the valgrind and heapcheck bots, which run without partitions.
|
| (void) partitionAllocShutdown(&m_objectModelRoot);
|
| + (void) partitionAllocShutdown(&m_renderingRoot);
|
| }
|
|
|
| } // namespace WebCore
|
|
|