Remove unused ConditionVariableWrapper on POSIX platforms

BUG=

Review URL: https://codereview.webrtc.org/1602203003

Cr-Commit-Position: refs/heads/master@{#11308}
This commit is contained in:
tommi
2016-01-19 13:13:14 -08:00
committed by Commit bot
parent 7b971e728b
commit cd255cc07b
8 changed files with 21 additions and 188 deletions

View File

@ -10,6 +10,11 @@
#include "webrtc/system_wrappers/include/condition_variable_wrapper.h"
// TODO(tommi): Remove completely. As is there is still some code for Windows
// that relies on ConditionVariableWrapper, but code has been removed on other
// platforms.
#if defined(WEBRTC_WIN)
#include "testing/gtest/include/gtest/gtest.h"
#include "webrtc/base/platform_thread.h"
#include "webrtc/base/scoped_ptr.h"
@ -201,3 +206,5 @@ TEST(CondVarWaitTest, WaitingWaits) {
} // anonymous namespace
} // namespace webrtc
#endif // defined(WEBRTC_WIN)