diff options
-rw-r--r-- | chrome/browser/metrics/metrics_service.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/chrome/browser/metrics/metrics_service.cc b/chrome/browser/metrics/metrics_service.cc index 7c400c3..b25b5b1 100644 --- a/chrome/browser/metrics/metrics_service.cc +++ b/chrome/browser/metrics/metrics_service.cc @@ -695,7 +695,9 @@ void MetricsService::StopRecording(MetricsLog** log) { // end of all log transmissions (initial log handles this separately). // Don't bother if we're going to discard current_log_. if (log) { - current_log_->RecordIncrementalStabilityElements(); + // TODO(jar): when initial logs and ongoing logs have equal survivability, + // uncomment the following line to expedite stability data uploads. + // current_log_->RecordIncrementalStabilityElements(); RecordCurrentHistograms(); } |