| Index: third_party/WebKit/Source/platform/heap/Heap.cpp
|
| diff --git a/third_party/WebKit/Source/platform/heap/Heap.cpp b/third_party/WebKit/Source/platform/heap/Heap.cpp
|
| index b5665c53f93c821ea55d8207811f81d9ae528f80..91c4310d031b66735f16e1d08608ea6b1f19b4d4 100644
|
| --- a/third_party/WebKit/Source/platform/heap/Heap.cpp
|
| +++ b/third_party/WebKit/Source/platform/heap/Heap.cpp
|
| @@ -30,6 +30,7 @@
|
|
|
| #include "platform/heap/Heap.h"
|
|
|
| +#include <memory>
|
| #include "platform/Histogram.h"
|
| #include "platform/RuntimeEnabledFeatures.h"
|
| #include "platform/ScriptForbiddenScope.h"
|
| @@ -50,7 +51,6 @@
|
| #include "wtf/LeakAnnotations.h"
|
| #include "wtf/PtrUtil.h"
|
| #include "wtf/allocator/Partitions.h"
|
| -#include <memory>
|
|
|
| namespace blink {
|
|
|
| @@ -158,8 +158,7 @@ ThreadHeap::ThreadHeap()
|
| s_mainThreadHeap = this;
|
| }
|
|
|
| -ThreadHeap::~ThreadHeap() {
|
| -}
|
| +ThreadHeap::~ThreadHeap() {}
|
|
|
| void ThreadHeap::attach(ThreadState* thread) {
|
| MutexLocker locker(m_threadAttachMutex);
|
|
|