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

Unified Diff: third_party/WebKit/Source/web/WebMemoryStatistics.cpp

Issue 2883793003: Move detached files from web/ to (core/modules)/exported. (Closed)
Patch Set: Created 3 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/web/WebMemoryStatistics.cpp
diff --git a/third_party/WebKit/Source/web/WebMemoryStatistics.cpp b/third_party/WebKit/Source/web/WebMemoryStatistics.cpp
deleted file mode 100644
index 465a85aba5907abe67efdb2c34a8c0513404c994..0000000000000000000000000000000000000000
--- a/third_party/WebKit/Source/web/WebMemoryStatistics.cpp
+++ /dev/null
@@ -1,49 +0,0 @@
-// 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 "public/web/WebMemoryStatistics.h"
-
-#include "platform/heap/Handle.h"
-#include "platform/wtf/allocator/Partitions.h"
-
-namespace blink {
-
-namespace {
-
-class LightPartitionStatsDumperImpl : public WTF::PartitionStatsDumper {
- public:
- LightPartitionStatsDumperImpl() : total_active_bytes_(0) {}
-
- void PartitionDumpTotals(
- const char* partition_name,
- const WTF::PartitionMemoryStats* memory_stats) override {
- total_active_bytes_ += memory_stats->total_active_bytes;
- }
-
- void PartitionsDumpBucketStats(
- const char* partition_name,
- const WTF::PartitionBucketMemoryStats*) override {}
-
- size_t TotalActiveBytes() const { return total_active_bytes_; }
-
- private:
- size_t total_active_bytes_;
-};
-
-} // namespace
-
-WebMemoryStatistics WebMemoryStatistics::Get() {
- LightPartitionStatsDumperImpl dumper;
- WebMemoryStatistics statistics;
-
- WTF::Partitions::DumpMemoryStats(true, &dumper);
- statistics.partition_alloc_total_allocated_bytes = dumper.TotalActiveBytes();
-
- statistics.blink_gc_total_allocated_bytes =
- ProcessHeap::TotalAllocatedObjectSize() +
- ProcessHeap::TotalMarkedObjectSize();
- return statistics;
-}
-
-} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698