summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/core/exported/web_memory_statistics.cc
blob: 2e2004b9f30114b4fbb295dfab7358710946a2d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "third_party/blink/public/web/web_memory_statistics.h"

#include "third_party/blink/renderer/platform/heap/handle.h"
#include "third_party/blink/renderer/platform/wtf/allocator/partitions.h"

namespace blink {

WebMemoryStatistics WebMemoryStatistics::Get() {
  WebMemoryStatistics statistics;
  statistics.partition_alloc_total_allocated_bytes =
      WTF::Partitions::TotalActiveBytes();
  statistics.blink_gc_total_allocated_bytes =
      ProcessHeap::TotalAllocatedObjectSize();
  return statistics;
}

}  // namespace blink