From c3f15c08bc7d612ff2a656eb6f0bac5582653c5a Mon Sep 17 00:00:00 2001 From: "stefan@webrtc.org" Date: Thu, 5 Mar 2015 16:05:53 +0000 Subject: [PATCH] Fix scoped_ptrs in bwe_simulations. R=kwiberg@webrtc.org Review URL: https://webrtc-codereview.appspot.com/45469004 Cr-Commit-Position: refs/heads/master@{#8618} git-svn-id: http://webrtc.googlecode.com/svn/trunk@8618 4adac7df-926f-26a2-2b94-8c16560cd09d --- webrtc/modules/remote_bitrate_estimator/bwe_simulations.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webrtc/modules/remote_bitrate_estimator/bwe_simulations.cc b/webrtc/modules/remote_bitrate_estimator/bwe_simulations.cc index 99642934e5..c0d5f22b0d 100644 --- a/webrtc/modules/remote_bitrate_estimator/bwe_simulations.cc +++ b/webrtc/modules/remote_bitrate_estimator/bwe_simulations.cc @@ -227,7 +227,7 @@ TEST_P(BweSimulation, SelfFairnessTest) { RateCounterFilter total_utilization( &uplink_, CreateFlowIds(kAllFlowIds, kNumFlows), "total_utilization"); - scoped_ptr receivers[kNumFlows]; + rtc::scoped_ptr receivers[kNumFlows]; for (size_t i = 0; i < kNumFlows; ++i) { receivers[i].reset(new PacketReceiver(&uplink_, kAllFlowIds[i], GetParam(), i == 0, false)); @@ -264,7 +264,7 @@ TEST_P(BweSimulation, PacedSelfFairnessTest) { RateCounterFilter total_utilization( &uplink_, CreateFlowIds(kAllFlowIds, kNumFlows), "total_utilization"); - scoped_ptr receivers[kNumFlows]; + rtc::scoped_ptr receivers[kNumFlows]; for (size_t i = 0; i < kNumFlows; ++i) { receivers[i].reset(new PacketReceiver(&uplink_, kAllFlowIds[i], GetParam(), i == 0, false));