Index: media/cast/test/sender.cc |
diff --git a/media/cast/test/sender.cc b/media/cast/test/sender.cc |
index e34ecf12354ef1e5dead6b6241bad924bb2242df..739869878e6d7917d89f2d366b6c91daaf13e584 100644 |
--- a/media/cast/test/sender.cc |
+++ b/media/cast/test/sender.cc |
@@ -187,13 +187,13 @@ void WriteStatsAndDestroySubscribers( |
scoped_ptr<base::DictionaryValue> stats = video_event_subscriber->GetStats(); |
std::string json; |
base::JSONWriter::WriteWithOptions( |
- stats.get(), base::JSONWriter::OPTIONS_PRETTY_PRINT, &json); |
+ *stats, base::JSONWriter::OPTIONS_PRETTY_PRINT, &json); |
VLOG(0) << "Video stats: " << json; |
stats = audio_event_subscriber->GetStats(); |
json.clear(); |
base::JSONWriter::WriteWithOptions( |
- stats.get(), base::JSONWriter::OPTIONS_PRETTY_PRINT, &json); |
+ *stats, base::JSONWriter::OPTIONS_PRETTY_PRINT, &json); |
VLOG(0) << "Audio stats: " << json; |
} |