| 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 // TODO(tommi): Remove completely. As is there is still some code for Windows | 11 // TODO(tommi): Remove completely. As is there is still some code for Windows |
| 12 // that relies on ConditionVariableEventWin, but code has been removed on other | 12 // that relies on ConditionVariableEventWin, but code has been removed on other |
| 13 // platforms. | 13 // platforms. |
| 14 #if defined(WEBRTC_WIN) | 14 #if defined(WEBRTC_WIN) |
| 15 | 15 |
| 16 #include "webrtc/system_wrappers/source/condition_variable_event_win.h" | |
| 17 | |
| 18 #include "webrtc/test/gtest.h" | |
| 19 #include "webrtc/base/platform_thread.h" | 16 #include "webrtc/base/platform_thread.h" |
| 20 #include "webrtc/base/timeutils.h" | 17 #include "webrtc/base/timeutils.h" |
| 21 #include "webrtc/system_wrappers/include/critical_section_wrapper.h" | 18 #include "webrtc/system_wrappers/include/critical_section_wrapper.h" |
| 22 #include "webrtc/system_wrappers/include/trace.h" | 19 #include "webrtc/system_wrappers/include/trace.h" |
| 20 #include "webrtc/system_wrappers/source/condition_variable_event_win.h" |
| 21 #include "webrtc/test/gtest.h" |
| 23 | 22 |
| 24 namespace webrtc { | 23 namespace webrtc { |
| 25 | 24 |
| 26 namespace { | 25 namespace { |
| 27 | 26 |
| 28 const int kLongWaitMs = 100 * 1000; // A long time in testing terms | 27 const int kLongWaitMs = 100 * 1000; // A long time in testing terms |
| 29 const int kShortWaitMs = 2 * 1000; // Long enough for process switches to happen | 28 const int kShortWaitMs = 2 * 1000; // Long enough for process switches to happen |
| 30 const int kVeryShortWaitMs = 20; // Used when we want a timeout | 29 const int kVeryShortWaitMs = 20; // Used when we want a timeout |
| 31 | 30 |
| 32 // A Baton is one possible control structure one can build using | 31 // A Baton is one possible control structure one can build using |
| (...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 198 << "actual elapsed:" << end_ms - start_ms; | 197 << "actual elapsed:" << end_ms - start_ms; |
| 199 LeaveCriticalSection(&crit_sect); | 198 LeaveCriticalSection(&crit_sect); |
| 200 DeleteCriticalSection(&crit_sect); | 199 DeleteCriticalSection(&crit_sect); |
| 201 } | 200 } |
| 202 | 201 |
| 203 } // anonymous namespace | 202 } // anonymous namespace |
| 204 | 203 |
| 205 } // namespace webrtc | 204 } // namespace webrtc |
| 206 | 205 |
| 207 #endif // defined(WEBRTC_WIN) | 206 #endif // defined(WEBRTC_WIN) |
| OLD | NEW |