| 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 6012cf5d579554cdde33ba8c4a8e785de2e99174..7c6c83e58a8dd1d023f5f21b6a392fbabfa6914c 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"
|
| @@ -43,14 +44,13 @@
|
| #include "platform/instrumentation/tracing/TraceEvent.h"
|
| #include "platform/instrumentation/tracing/web_memory_allocator_dump.h"
|
| #include "platform/instrumentation/tracing/web_process_memory_dump.h"
|
| +#include "platform/wtf/Assertions.h"
|
| +#include "platform/wtf/CurrentTime.h"
|
| +#include "platform/wtf/DataLog.h"
|
| +#include "platform/wtf/LeakAnnotations.h"
|
| +#include "platform/wtf/PtrUtil.h"
|
| +#include "platform/wtf/allocator/Partitions.h"
|
| #include "public/platform/Platform.h"
|
| -#include "wtf/Assertions.h"
|
| -#include "wtf/CurrentTime.h"
|
| -#include "wtf/DataLog.h"
|
| -#include "wtf/LeakAnnotations.h"
|
| -#include "wtf/PtrUtil.h"
|
| -#include "wtf/allocator/Partitions.h"
|
| -#include <memory>
|
|
|
| namespace blink {
|
|
|
|
|