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

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

Issue 2652923002: Devirtualize Visitor and remove inline visitor specialization. (Closed)
Patch Set: rebased Created 3 years, 10 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/WebFrame.cpp ('k') | third_party/WebKit/public/web/WebFrame.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/WebFrame.cpp ('k') | third_party/WebKit/public/web/WebFrame.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698