| Index: third_party/WebKit/Source/platform/heap/Heap.h
|
| diff --git a/third_party/WebKit/Source/platform/heap/Heap.h b/third_party/WebKit/Source/platform/heap/Heap.h
|
| index 905b19ccaa95312c2428b4a08e53897a5fe22ece..e9b3b88085121ebe0acad3b511b427edf94255c5 100644
|
| --- a/third_party/WebKit/Source/platform/heap/Heap.h
|
| +++ b/third_party/WebKit/Source/platform/heap/Heap.h
|
| @@ -273,7 +273,6 @@ class PLATFORM_EXPORT ThreadHeap {
|
| RecursiveMutex& threadAttachMutex() { return m_threadAttachMutex; }
|
| const ThreadStateSet& threads() const { return m_threads; }
|
| ThreadHeapStats& heapStats() { return m_stats; }
|
| - SafePointBarrier* safePointBarrier() { return m_safePointBarrier.get(); }
|
| CallbackStack* markingStack() const { return m_markingStack.get(); }
|
| CallbackStack* postMarkingCallbackStack() const {
|
| return m_postMarkingCallbackStack.get();
|
| @@ -460,7 +459,6 @@ class PLATFORM_EXPORT ThreadHeap {
|
| ThreadHeapStats m_stats;
|
| std::unique_ptr<RegionTree> m_regionTree;
|
| std::unique_ptr<HeapDoesNotContainCache> m_heapDoesNotContainCache;
|
| - std::unique_ptr<SafePointBarrier> m_safePointBarrier;
|
| std::unique_ptr<PagePool> m_freePagePool;
|
| std::unique_ptr<CallbackStack> m_markingStack;
|
| std::unique_ptr<CallbackStack> m_postMarkingCallbackStack;
|
|
|