Remove redundant check in GCTracer::SampleAllocation.

BUG=

Review URL: https://codereview.chromium.org/1213593004

Cr-Commit-Position: refs/heads/master@{#29443}
This commit is contained in:
ulan 2015-07-02 06:28:36 -07:00 committed by Commit bot
parent 5000650bde
commit 65a1d7265a

View File

@ -277,11 +277,6 @@ void GCTracer::SampleAllocation(double current_ms,
size_t old_generation_allocated_bytes =
old_generation_counter_bytes - old_generation_allocation_counter_bytes_;
double duration = current_ms - allocation_time_ms_;
const double kMinDurationMs = 100;
if (duration < kMinDurationMs) {
// Do not sample small durations to avoid precision errors.
return;
}
allocation_time_ms_ = current_ms;
new_space_allocation_counter_bytes_ = new_space_counter_bytes;
old_generation_allocation_counter_bytes_ = old_generation_counter_bytes;