From 20ab9b12592ad5ecb69dbe6edbcd2832eec93f14 Mon Sep 17 00:00:00 2001 From: mlippautz Date: Wed, 19 Aug 2015 08:38:44 -0700 Subject: [PATCH] [heap] Fix comment in tracer. BUG= Review URL: https://codereview.chromium.org/1292583004 Cr-Commit-Position: refs/heads/master@{#30252} --- src/heap/gc-tracer.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/heap/gc-tracer.h b/src/heap/gc-tracer.h index e4751c8..7572059 100644 --- a/src/heap/gc-tracer.h +++ b/src/heap/gc-tracer.h @@ -419,13 +419,13 @@ class GCTracer { // Returns 0 if no allocation events have been recorded. size_t AllocationThroughputInBytesPerMillisecond(double time_ms) const; - // Allocation throughput in heap in bytes/milliseconds in - // the last five seconds. + // Allocation throughput in heap in bytes/milliseconds in the last + // kThroughputTimeFrameMs seconds. // Returns 0 if no allocation events have been recorded. size_t CurrentAllocationThroughputInBytesPerMillisecond() const; - // Allocation throughput in old generation in bytes/milliseconds in - // the last five seconds. + // Allocation throughput in old generation in bytes/milliseconds in the last + // kThroughputTimeFrameMs seconds. // Returns 0 if no allocation events have been recorded. size_t CurrentOldGenerationAllocationThroughputInBytesPerMillisecond() const; -- 2.7.4