| Index: content/renderer/media/peer_connection_tracker.cc
|
| diff --git a/content/renderer/media/peer_connection_tracker.cc b/content/renderer/media/peer_connection_tracker.cc
|
| index 203ba8b6202db4b046e4e51897ccb820d13d23f6..b2d15ac17d8df6a56d6b7f04a35fdc822dfa89e5 100644
|
| --- a/content/renderer/media/peer_connection_tracker.cc
|
| +++ b/content/renderer/media/peer_connection_tracker.cc
|
| @@ -181,14 +181,14 @@ static DictionaryValue* GetDictValue(const webrtc::StatsReport& report) {
|
| scoped_ptr<DictionaryValue> stats, result;
|
|
|
| stats.reset(GetDictValueStats(report));
|
| - if (!stats.get())
|
| + if (!stats)
|
| return NULL;
|
|
|
| result.reset(new DictionaryValue());
|
| - if (!result.get())
|
| + if (!result)
|
| return NULL;
|
|
|
| - if (stats.get())
|
| + if (stats)
|
| result->Set("stats", stats.release());
|
| result->SetString("id", report.id);
|
| result->SetString("type", report.type);
|
|
|