From 3d9981d58a454e79e1c6cc7ba8a568784f390156 Mon Sep 17 00:00:00 2001 From: "andrew@webrtc.org" Date: Wed, 4 Dec 2013 17:13:47 +0000 Subject: [PATCH] Remove unused ThreadData struct. TBR=bjornv Review URL: https://webrtc-codereview.appspot.com/4949004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@5216 4adac7df-926f-26a2-2b94-8c16560cd09d --- .../test/audio_processing_unittest.cc | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/webrtc/modules/audio_processing/test/audio_processing_unittest.cc b/webrtc/modules/audio_processing/test/audio_processing_unittest.cc index 6be12c2e6..bb6bc2eb8 100644 --- a/webrtc/modules/audio_processing/test/audio_processing_unittest.cc +++ b/webrtc/modules/audio_processing/test/audio_processing_unittest.cc @@ -18,7 +18,6 @@ #include "webrtc/modules/interface/module_common_types.h" #include "webrtc/system_wrappers/interface/event_wrapper.h" #include "webrtc/system_wrappers/interface/scoped_ptr.h" -#include "webrtc/system_wrappers/interface/thread_wrapper.h" #include "webrtc/system_wrappers/interface/trace.h" #include "webrtc/test/testsupport/fileutils.h" #include "webrtc/test/testsupport/gtest_disable.h" @@ -200,16 +199,6 @@ void ReadMessageLiteFromFile(const std::string filename, } #endif // WEBRTC_AUDIOPROC_BIT_EXACT -struct ThreadData { - ThreadData(int thread_num_, AudioProcessing* ap_) - : thread_num(thread_num_), - error(false), - ap(ap_) {} - int thread_num; - bool error; - AudioProcessing* ap; -}; - class ApmTest : public ::testing::Test { protected: ApmTest();