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

Unified Diff: chrome/renderer/renderer_histogram_snapshots.cc

Issue 4349002: Revert 64687 - Try to detect internal corruption of histogram instances.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years, 1 month 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
« no previous file with comments | « chrome/common/metrics_helpers.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/renderer_histogram_snapshots.cc
===================================================================
--- chrome/renderer/renderer_histogram_snapshots.cc (revision 64845)
+++ chrome/renderer/renderer_histogram_snapshots.cc (working copy)
@@ -52,33 +52,17 @@
sequence_number, pickled_histograms));
}
-// Extract snapshot data, remember what we've seen so far, and then send off the
-// delta to the browser.
+// Extract snapshot data and then send it off the the Browser process
+// to save it.
void RendererHistogramSnapshots::UploadHistrogram(
const Histogram& histogram,
HistogramPickledList* pickled_histograms) {
+
// Get up-to-date snapshot of sample stats.
Histogram::SampleSet snapshot;
histogram.SnapshotSample(&snapshot);
const std::string& histogram_name = histogram.histogram_name();
- int corruption = histogram.FindCorruption(snapshot);
- if (corruption) {
- NOTREACHED();
- // Don't send corrupt data to the browser.
- UMA_HISTOGRAM_ENUMERATION("Histogram.InconsistenciesRenderer",
- corruption, Histogram::NEVER_EXCEEDED_VALUE);
- typedef std::map<std::string, int> ProblemMap;
- static ProblemMap* inconsistencies = new ProblemMap;
- int old_corruption = (*inconsistencies)[histogram_name];
- if (old_corruption == (corruption | old_corruption))
- return; // We've already seen this corruption for this histogram.
- (*inconsistencies)[histogram_name] |= corruption;
- UMA_HISTOGRAM_ENUMERATION("Histogram.InconsistenciesRendererUnique",
- corruption, Histogram::NEVER_EXCEEDED_VALUE);
- return;
- }
-
// Find the already sent stats, or create an empty set.
LoggedSampleMap::iterator it = logged_samples_.find(histogram_name);
Histogram::SampleSet* already_logged;
@@ -105,6 +89,7 @@
const Histogram& histogram,
const Histogram::SampleSet& snapshot,
HistogramPickledList* pickled_histograms) {
+
DCHECK(0 != snapshot.TotalCount());
snapshot.CheckSize(histogram);
« no previous file with comments | « chrome/common/metrics_helpers.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698