OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
11 #include "webrtc/system_wrappers/include/condition_variable_wrapper.h" | 11 #include "webrtc/system_wrappers/include/condition_variable_wrapper.h" |
12 | 12 |
| 13 // TODO(tommi): Remove completely. As is there is still some code for Windows |
| 14 // that relies on ConditionVariableWrapper, but code has been removed on other |
| 15 // platforms. |
| 16 #if defined(WEBRTC_WIN) |
| 17 |
13 #include "testing/gtest/include/gtest/gtest.h" | 18 #include "testing/gtest/include/gtest/gtest.h" |
14 #include "webrtc/base/platform_thread.h" | 19 #include "webrtc/base/platform_thread.h" |
15 #include "webrtc/base/scoped_ptr.h" | 20 #include "webrtc/base/scoped_ptr.h" |
16 #include "webrtc/system_wrappers/include/critical_section_wrapper.h" | 21 #include "webrtc/system_wrappers/include/critical_section_wrapper.h" |
17 #include "webrtc/system_wrappers/include/tick_util.h" | 22 #include "webrtc/system_wrappers/include/tick_util.h" |
18 #include "webrtc/system_wrappers/include/trace.h" | 23 #include "webrtc/system_wrappers/include/trace.h" |
19 | 24 |
20 namespace webrtc { | 25 namespace webrtc { |
21 | 26 |
22 namespace { | 27 namespace { |
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
194 int64_t start_ms = TickTime::MillisecondTimestamp(); | 199 int64_t start_ms = TickTime::MillisecondTimestamp(); |
195 EXPECT_FALSE(cond_var->SleepCS(*(crit_sect), kVeryShortWaitMs)); | 200 EXPECT_FALSE(cond_var->SleepCS(*(crit_sect), kVeryShortWaitMs)); |
196 int64_t end_ms = TickTime::MillisecondTimestamp(); | 201 int64_t end_ms = TickTime::MillisecondTimestamp(); |
197 EXPECT_LE(start_ms + kVeryShortWaitMs, end_ms) | 202 EXPECT_LE(start_ms + kVeryShortWaitMs, end_ms) |
198 << "actual elapsed:" << end_ms - start_ms; | 203 << "actual elapsed:" << end_ms - start_ms; |
199 } | 204 } |
200 | 205 |
201 } // anonymous namespace | 206 } // anonymous namespace |
202 | 207 |
203 } // namespace webrtc | 208 } // namespace webrtc |
| 209 |
| 210 #endif // defined(WEBRTC_WIN) |
OLD | NEW |