| Index: third_party/WebKit/Source/platform/heap/Handle.h
|
| diff --git a/third_party/WebKit/Source/platform/heap/Handle.h b/third_party/WebKit/Source/platform/heap/Handle.h
|
| index 00c5855a50227675fc8a44aa9682d3d3ceaa7ed2..7e9fe1cd24ca9284c28dcd9eecaa45c6a18b87da 100644
|
| --- a/third_party/WebKit/Source/platform/heap/Handle.h
|
| +++ b/third_party/WebKit/Source/platform/heap/Handle.h
|
| @@ -240,7 +240,7 @@ private:
|
|
|
| TraceCallback traceCallback = TraceMethodDelegate<PersistentBase<T, weaknessConfiguration, crossThreadnessConfiguration>, &PersistentBase<T, weaknessConfiguration, crossThreadnessConfiguration>::trace>::trampoline;
|
| if (crossThreadnessConfiguration == CrossThreadPersistentConfiguration) {
|
| - m_persistentNode = Heap::crossThreadPersistentRegion().allocatePersistentNode(this, traceCallback);
|
| + m_persistentNode = ProcessHeap::crossThreadPersistentRegion().allocatePersistentNode(this, traceCallback);
|
| } else {
|
| ThreadState* state = ThreadStateFor<ThreadingTrait<T>::Affinity>::state();
|
| ASSERT(state->checkThread());
|
| @@ -257,7 +257,7 @@ private:
|
| return;
|
|
|
| if (crossThreadnessConfiguration == CrossThreadPersistentConfiguration) {
|
| - Heap::crossThreadPersistentRegion().freePersistentNode(m_persistentNode);
|
| + ProcessHeap::crossThreadPersistentRegion().freePersistentNode(m_persistentNode);
|
| } else {
|
| ThreadState* state = ThreadStateFor<ThreadingTrait<T>::Affinity>::state();
|
| ASSERT(state->checkThread());
|
|
|