| 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/base/platform_thread.h" | 16 #include "webrtc/base/platform_thread.h" |
| 17 #include "webrtc/base/timeutils.h" | 17 #include "webrtc/base/timeutils.h" |
| 18 #include "webrtc/system_wrappers/include/critical_section_wrapper.h" | 18 #include "webrtc/system_wrappers/include/critical_section_wrapper.h" |
| 19 #include "webrtc/system_wrappers/include/trace.h" | |
| 20 #include "webrtc/system_wrappers/source/condition_variable_event_win.h" | 19 #include "webrtc/system_wrappers/source/condition_variable_event_win.h" |
| 21 #include "webrtc/test/gtest.h" | 20 #include "webrtc/test/gtest.h" |
| 22 | 21 |
| 23 namespace webrtc { | 22 namespace webrtc { |
| 24 | 23 |
| 25 namespace { | 24 namespace { |
| 26 | 25 |
| 27 const int kLongWaitMs = 100 * 1000; // A long time in testing terms | 26 const int kLongWaitMs = 100 * 1000; // A long time in testing terms |
| 28 const int kShortWaitMs = 2 * 1000; // Long enough for process switches to happen | 27 const int kShortWaitMs = 2 * 1000; // Long enough for process switches to happen |
| 29 const int kVeryShortWaitMs = 20; // Used when we want a timeout | 28 const int kVeryShortWaitMs = 20; // Used when we want a timeout |
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 197 << "actual elapsed:" << end_ms - start_ms; | 196 << "actual elapsed:" << end_ms - start_ms; |
| 198 LeaveCriticalSection(&crit_sect); | 197 LeaveCriticalSection(&crit_sect); |
| 199 DeleteCriticalSection(&crit_sect); | 198 DeleteCriticalSection(&crit_sect); |
| 200 } | 199 } |
| 201 | 200 |
| 202 } // anonymous namespace | 201 } // anonymous namespace |
| 203 | 202 |
| 204 } // namespace webrtc | 203 } // namespace webrtc |
| 205 | 204 |
| 206 #endif // defined(WEBRTC_WIN) | 205 #endif // defined(WEBRTC_WIN) |
| OLD | NEW |