Index: base/metrics/statistics_recorder.cc |
diff --git a/base/metrics/statistics_recorder.cc b/base/metrics/statistics_recorder.cc |
index 62617c5d804cbe20f7299b387e499fc96c1bcfc8..08481af5ea5cbdfc8400aaf220e4d09455ed80f5 100644 |
--- a/base/metrics/statistics_recorder.cc |
+++ b/base/metrics/statistics_recorder.cc |
@@ -289,9 +289,9 @@ StatisticsRecorder::StatisticsRecorder() { |
void StatisticsRecorder::DumpHistogramsToVlog(void* instance) { |
DCHECK(VLOG_IS_ON(1)); |
- StatisticsRecorder* me = reinterpret_cast<StatisticsRecorder*>(instance); |
string output; |
- me->WriteGraph(std::string(), &output); |
+ reinterpret_cast<StatisticsRecorder*>(instance)->WriteGraph(std::string(), |
+ &output); |
VLOG(1) << output; |
} |