diff options
Diffstat (limited to 'media/cast/test/sender.cc')
-rw-r--r-- | media/cast/test/sender.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/media/cast/test/sender.cc b/media/cast/test/sender.cc index e34ecf1..7398698 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; } |