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

Unified Diff: content/browser/histogram_message_filter.cc

Issue 12207058: Connect SparseHistogram with the rest of stats system (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 7 years, 10 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
« no previous file with comments | « chrome/test/base/uma_histogram_helper.cc ('k') | content/common/child_histogram_message_filter.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/histogram_message_filter.cc
diff --git a/content/browser/histogram_message_filter.cc b/content/browser/histogram_message_filter.cc
index ef31efd02c79b9fd7e1493db706eb2ff96bba6c4..ac08af3bc16aaa8c202aced274a02086e764ea01 100644
--- a/content/browser/histogram_message_filter.cc
+++ b/content/browser/histogram_message_filter.cc
@@ -63,7 +63,8 @@ void HistogramMessageFilter::OnGetBrowserHistogram(
<< " switches.";
return;
}
- base::Histogram* histogram = base::StatisticsRecorder::FindHistogram(name);
+ base::HistogramBase* histogram =
+ base::StatisticsRecorder::FindHistogram(name);
if (!histogram) {
*histogram_json = "{}";
} else {
« no previous file with comments | « chrome/test/base/uma_histogram_helper.cc ('k') | content/common/child_histogram_message_filter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698