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

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

Issue 2614883006: Change PartitionAlloc to Chromium naming style. (Closed)
Patch Set: Rebase and fix some names. Created 3 years, 11 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
index a12b65d1b903e050854488dc259ed98a9a3659b3..f722a18c2d9eccd6d90300bf00665d3147f2445b 100644
--- a/third_party/WebKit/Source/web/WebMemoryStatistics.cpp
+++ b/third_party/WebKit/Source/web/WebMemoryStatistics.cpp
@@ -15,13 +15,13 @@ class LightPartitionStatsDumperImpl : public WTF::PartitionStatsDumper {
public:
LightPartitionStatsDumperImpl() : m_totalActiveBytes(0) {}
- void partitionDumpTotals(
+ void PartitionDumpTotals(
const char* partitionName,
const WTF::PartitionMemoryStats* memoryStats) override {
- m_totalActiveBytes += memoryStats->totalActiveBytes;
+ m_totalActiveBytes += memoryStats->total_active_bytes;
}
- void partitionsDumpBucketStats(
+ void PartitionsDumpBucketStats(
const char* partitionName,
const WTF::PartitionBucketMemoryStats*) override {}

Powered by Google App Engine
This is Rietveld 408576698