Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5)

Side by Side Diff: third_party/WebKit/Source/web/WebMemoryStatistics.cpp

Issue 2391423004: Add UMA for PurgeAndSuspend. (Closed)
Patch Set: Fixed histograms.xml. Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « third_party/WebKit/Source/web/BUILD.gn ('k') | third_party/WebKit/public/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "public/web/WebMemoryStatistics.h"
6
7 #include "platform/heap/Heap.h"
8 #include "wtf/allocator/Partitions.h"
9
10 namespace blink {
11
12 namespace {
13
14 class LightPartitionStatsDumperImpl : public WTF::PartitionStatsDumper {
15 public:
16 LightPartitionStatsDumperImpl() : m_totalActiveBytes(0) {}
17
18 void partitionDumpTotals(
19 const char* partitionName,
20 const WTF::PartitionMemoryStats* memoryStats) override {
21 m_totalActiveBytes += memoryStats->totalActiveBytes;
22 }
23
24 void partitionsDumpBucketStats(
25 const char* partitionName,
26 const WTF::PartitionBucketMemoryStats*) override {}
27
28 size_t totalActiveBytes() const { return m_totalActiveBytes; }
29
30 private:
31 size_t m_totalActiveBytes;
32 };
33
34 } // namespace
35
36 WebMemoryStatistics WebMemoryStatistics::Get() {
37 LightPartitionStatsDumperImpl dumper;
38 WebMemoryStatistics statistics;
39
40 WTF::Partitions::dumpMemoryStats(true, &dumper);
41 statistics.partitionAllocTotalAllocatedBytes = dumper.totalActiveBytes();
42
43 statistics.blinkGCTotalAllocatedBytes =
44 ProcessHeap::totalAllocatedObjectSize() +
45 ProcessHeap::totalMarkedObjectSize();
46 return statistics;
47 }
48
49 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/BUILD.gn ('k') | third_party/WebKit/public/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698