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

Unified Diff: chrome/common/metrics_helpers.cc

Issue 2936005: Compress and checksum pending logs that are going to be persisted. ... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 5 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: chrome/common/metrics_helpers.cc
===================================================================
--- chrome/common/metrics_helpers.cc (revision 52082)
+++ chrome/common/metrics_helpers.cc (working copy)
@@ -410,7 +410,7 @@
// MetricsServiceBase
MetricsServiceBase::MetricsServiceBase()
: pending_log_(NULL),
- pending_log_text_(),
+ compressed_log_(),
current_log_(NULL),
logged_samples_() {
}
@@ -512,6 +512,5 @@
delete pending_log_;
pending_log_ = NULL;
}
- pending_log_text_.clear();
+ compressed_log_.clear();
}
-

Powered by Google App Engine
This is Rietveld 408576698