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

Unified Diff: content/renderer/dom_automation_controller.cc

Issue 12207058: Connect SparseHistogram with the rest of stats system (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix and add tests 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
Index: content/renderer/dom_automation_controller.cc
diff --git a/content/renderer/dom_automation_controller.cc b/content/renderer/dom_automation_controller.cc
index 8c4847ccb0e34ec6bb59f7a2bc313cb4463367e3..cce5d37f7fe5c34987b1dec078070ce3a5022e57 100644
--- a/content/renderer/dom_automation_controller.cc
+++ b/content/renderer/dom_automation_controller.cc
@@ -184,7 +184,7 @@ void DomAutomationController::GetHistogram(const CppArgumentList& args,
result->SetNull();
return;
}
- base::Histogram* histogram =
+ base::HistogramBase* histogram =
base::StatisticsRecorder::FindHistogram(args[0].ToString());
std::string output;
if (!histogram) {

Powered by Google App Engine
This is Rietveld 408576698