| Index: webrtc/voice_engine/test/auto_test/voe_stress_test.h
|
| diff --git a/webrtc/voice_engine/test/auto_test/voe_stress_test.h b/webrtc/voice_engine/test/auto_test/voe_stress_test.h
|
| index b69e8da39dad412cf291f5a62feb0cb88b06d87c..715e8ef724cb0a1d588552309638ca73330d384b 100644
|
| --- a/webrtc/voice_engine/test/auto_test/voe_stress_test.h
|
| +++ b/webrtc/voice_engine/test/auto_test/voe_stress_test.h
|
| @@ -12,10 +12,9 @@
|
| #define WEBRTC_VOICE_ENGINE_VOE_STRESS_TEST_H
|
|
|
| #include "webrtc/base/platform_thread.h"
|
| +#include "webrtc/base/scoped_ptr.h"
|
|
|
| namespace voetest {
|
| -// TODO(andrew): using directives are not permitted.
|
| -using namespace webrtc;
|
|
|
| class VoETestManager;
|
|
|
| @@ -38,7 +37,8 @@ class VoEStressTest {
|
|
|
| VoETestManager& _mgr;
|
|
|
| - rtc::scoped_ptr<PlatformThread> _ptrExtraApiThread;
|
| + // TODO(pbos): Remove scoped_ptr and use PlatformThread directly.
|
| + rtc::scoped_ptr<rtc::PlatformThread> _ptrExtraApiThread;
|
| };
|
|
|
| } // namespace voetest
|
|
|