| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "public/web/WebMemoryStatistics.h" | 5 #include "public/web/WebMemoryStatistics.h" |
| 6 | 6 |
| 7 #include "platform/heap/Heap.h" | 7 #include "platform/heap/Handle.h" |
| 8 #include "wtf/allocator/Partitions.h" | 8 #include "wtf/allocator/Partitions.h" |
| 9 | 9 |
| 10 namespace blink { | 10 namespace blink { |
| 11 | 11 |
| 12 namespace { | 12 namespace { |
| 13 | 13 |
| 14 class LightPartitionStatsDumperImpl : public WTF::PartitionStatsDumper { | 14 class LightPartitionStatsDumperImpl : public WTF::PartitionStatsDumper { |
| 15 public: | 15 public: |
| 16 LightPartitionStatsDumperImpl() : m_totalActiveBytes(0) {} | 16 LightPartitionStatsDumperImpl() : m_totalActiveBytes(0) {} |
| 17 | 17 |
| (...skipping 22 matching lines...) Expand all Loading... |
| 40 WTF::Partitions::dumpMemoryStats(true, &dumper); | 40 WTF::Partitions::dumpMemoryStats(true, &dumper); |
| 41 statistics.partitionAllocTotalAllocatedBytes = dumper.totalActiveBytes(); | 41 statistics.partitionAllocTotalAllocatedBytes = dumper.totalActiveBytes(); |
| 42 | 42 |
| 43 statistics.blinkGCTotalAllocatedBytes = | 43 statistics.blinkGCTotalAllocatedBytes = |
| 44 ProcessHeap::totalAllocatedObjectSize() + | 44 ProcessHeap::totalAllocatedObjectSize() + |
| 45 ProcessHeap::totalMarkedObjectSize(); | 45 ProcessHeap::totalMarkedObjectSize(); |
| 46 return statistics; | 46 return statistics; |
| 47 } | 47 } |
| 48 | 48 |
| 49 } // namespace blink | 49 } // namespace blink |
| OLD | NEW |