Commit 3032c633 authored by erikchen's avatar erikchen Committed by Commit Bot

Stop emitting "resident_set_bytes" in memory-infra traces.

Now that we emit private memory footprint, the former number is not
particularly meaningful.

Bug: 815328
Change-Id: I85cb76b08ef85073179b5c334c16d4775667b8e6
Reviewed-on: https://chromium-review.googlesource.com/940144
Commit-Queue: Erik Chen <erikchen@chromium.org>
Reviewed-by: default avatarPrimiano Tucci <primiano@chromium.org>
Cr-Commit-Position: refs/heads/master@{#540197}
parent 905ed37f
......@@ -29,10 +29,6 @@ bool IsMemoryInfraTracingEnabled() {
}
void OsDumpAsValueInto(TracedValue* value, const mojom::OSMemDump& os_dump) {
value->SetString(
"resident_set_bytes",
base::StringPrintf(
"%" PRIx64, static_cast<uint64_t>(os_dump.resident_set_kb) * 1024));
value->SetString(
"private_footprint_bytes",
base::StringPrintf(
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment