| Index: media/cast/logging/stats_event_subscriber.cc
|
| diff --git a/media/cast/logging/stats_event_subscriber.cc b/media/cast/logging/stats_event_subscriber.cc
|
| index ff5e6f8ddd86f6a6d94da860976b4180e4b6c042..61cd4aee923becd6873b2a122392e70b91858689 100644
|
| --- a/media/cast/logging/stats_event_subscriber.cc
|
| +++ b/media/cast/logging/stats_event_subscriber.cc
|
| @@ -92,7 +92,7 @@ StatsEventSubscriber::SimpleHistogram::GetHistogram() const {
|
| buckets_.back());
|
| histo->Append(bucket.release());
|
| }
|
| - return histo.Pass();
|
| + return histo;
|
| }
|
|
|
| StatsEventSubscriber::StatsEventSubscriber(
|
| @@ -247,7 +247,7 @@ scoped_ptr<base::DictionaryValue> StatsEventSubscriber::GetStats() const {
|
| ret->Set(event_media_type_ == AUDIO_EVENT ? "audio" : "video",
|
| stats.release());
|
|
|
| - return ret.Pass();
|
| + return ret;
|
| }
|
|
|
| void StatsEventSubscriber::Reset() {
|
|
|