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

Unified Diff: chrome/browser/metrics/metrics_service.cc

Issue 83023006: Remove plugin_list param from MetricsLog::RecordStabilityMetrics. (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 7 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/browser/metrics/metrics_log_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/metrics/metrics_service.cc
===================================================================
--- chrome/browser/metrics/metrics_service.cc (revision 236788)
+++ chrome/browser/metrics/metrics_service.cc (working copy)
@@ -1232,7 +1232,7 @@
current_log->RecordEnvironment(plugins_, google_update_metrics_,
synthetic_trials);
PrefService* pref = g_browser_process->local_state();
- current_log->RecordStabilityMetrics(plugins_, GetIncrementalUptime(pref),
+ current_log->RecordStabilityMetrics(GetIncrementalUptime(pref),
MetricsLog::ONGOING_LOG);
RecordCurrentHistograms();
@@ -1473,7 +1473,7 @@
initial_log_->RecordEnvironment(plugins_, google_update_metrics_,
synthetic_trials);
PrefService* pref = g_browser_process->local_state();
- initial_log_->RecordStabilityMetrics(plugins_, GetIncrementalUptime(pref),
+ initial_log_->RecordStabilityMetrics(GetIncrementalUptime(pref),
MetricsLog::INITIAL_LOG);
// Histograms only get written to the current log, so make the new log current
« no previous file with comments | « chrome/browser/metrics/metrics_log_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698