summaryrefslogtreecommitdiff
path: root/chromium/third_party/webrtc/voice_engine/test/auto_test/voe_standard_test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/webrtc/voice_engine/test/auto_test/voe_standard_test.cc')
-rw-r--r--chromium/third_party/webrtc/voice_engine/test/auto_test/voe_standard_test.cc15
1 files changed, 1 insertions, 14 deletions
diff --git a/chromium/third_party/webrtc/voice_engine/test/auto_test/voe_standard_test.cc b/chromium/third_party/webrtc/voice_engine/test/auto_test/voe_standard_test.cc
index d3fd478a52a..a187c4bb6ca 100644
--- a/chromium/third_party/webrtc/voice_engine/test/auto_test/voe_standard_test.cc
+++ b/chromium/third_party/webrtc/voice_engine/test/auto_test/voe_standard_test.cc
@@ -15,7 +15,7 @@
#include <string.h>
#include "webrtc/engine_configurations.h"
-#include "webrtc/system_wrappers/interface/event_wrapper.h"
+#include "webrtc/system_wrappers/include/event_wrapper.h"
#include "webrtc/voice_engine/include/voe_neteq_stats.h"
#include "webrtc/voice_engine/test/auto_test/automated_mode.h"
#include "webrtc/voice_engine/test/auto_test/voe_cpu_test.h"
@@ -117,14 +117,6 @@ bool VoETestManager::Init() {
if (initialized_)
return true;
- if (VoiceEngine::SetTraceFile(NULL) != -1) {
- // should not be possible to call a Trace method before the VoE is
- // created
- TEST_LOG("\nError at line: %i (VoiceEngine::SetTraceFile()"
- "should fail)!\n", __LINE__);
- return false;
- }
-
voice_engine_ = VoiceEngine::Create();
if (!voice_engine_) {
TEST_LOG("Failed to create VoiceEngine\n");
@@ -230,11 +222,6 @@ int VoETestManager::ReleaseInterfaces() {
releaseOK = false;
}
- if (VoiceEngine::SetTraceFile(NULL) != -1) {
- TEST_LOG("\nError at line: %i (VoiceEngine::SetTraceFile()"
- "should fail)!\n", __LINE__);
- }
-
return (releaseOK == true) ? 0 : -1;
}