Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(257)

Side by Side Diff: webrtc/system_wrappers/source/condition_variable_unittest.cc

Issue 1937693002: Replace scoped_ptr with unique_ptr everywhere (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@unique5
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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" 16 #include "webrtc/system_wrappers/source/condition_variable_event_win.h"
17 17
18 #include "testing/gtest/include/gtest/gtest.h" 18 #include "testing/gtest/include/gtest/gtest.h"
19 #include "webrtc/base/platform_thread.h" 19 #include "webrtc/base/platform_thread.h"
20 #include "webrtc/base/scoped_ptr.h"
21 #include "webrtc/system_wrappers/include/critical_section_wrapper.h" 20 #include "webrtc/system_wrappers/include/critical_section_wrapper.h"
22 #include "webrtc/system_wrappers/include/tick_util.h" 21 #include "webrtc/system_wrappers/include/tick_util.h"
23 #include "webrtc/system_wrappers/include/trace.h" 22 #include "webrtc/system_wrappers/include/trace.h"
24 23
25 namespace webrtc { 24 namespace webrtc {
26 25
27 namespace { 26 namespace {
28 27
29 const int kLongWaitMs = 100 * 1000; // A long time in testing terms 28 const int kLongWaitMs = 100 * 1000; // A long time in testing terms
30 const int kShortWaitMs = 2 * 1000; // Long enough for process switches to happen 29 const int kShortWaitMs = 2 * 1000; // Long enough for process switches to happen
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
199 << "actual elapsed:" << end_ms - start_ms; 198 << "actual elapsed:" << end_ms - start_ms;
200 LeaveCriticalSection(&crit_sect); 199 LeaveCriticalSection(&crit_sect);
201 DeleteCriticalSection(&crit_sect); 200 DeleteCriticalSection(&crit_sect);
202 } 201 }
203 202
204 } // anonymous namespace 203 } // anonymous namespace
205 204
206 } // namespace webrtc 205 } // namespace webrtc
207 206
208 #endif // defined(WEBRTC_WIN) 207 #endif // defined(WEBRTC_WIN)
OLDNEW
« no previous file with comments | « webrtc/system_wrappers/source/aligned_malloc_unittest.cc ('k') | webrtc/system_wrappers/source/file_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698