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

Unified Diff: webrtc/rtc_base/nullsocketserver_unittest.cc

Issue 2981623002: Make the default ctor of rtc::Thread, protected (Closed)
Patch Set: Format Created 3 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/rtc_base/messagequeue_unittest.cc ('k') | webrtc/rtc_base/physicalsocketserver_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/rtc_base/nullsocketserver_unittest.cc
diff --git a/webrtc/rtc_base/nullsocketserver_unittest.cc b/webrtc/rtc_base/nullsocketserver_unittest.cc
index 5908d32958a6d93d296ef7617ff73fc938343935..5538322643a387dc73c676193ee3f7221cf34718 100644
--- a/webrtc/rtc_base/nullsocketserver_unittest.cc
+++ b/webrtc/rtc_base/nullsocketserver_unittest.cc
@@ -28,9 +28,9 @@ class NullSocketServerTest
};
TEST_F(NullSocketServerTest, WaitAndSet) {
- Thread thread;
- EXPECT_TRUE(thread.Start());
- thread.Post(RTC_FROM_HERE, this, 0);
+ auto thread = Thread::Create();
+ EXPECT_TRUE(thread->Start());
+ thread->Post(RTC_FROM_HERE, this, 0);
// The process_io will be ignored.
const bool process_io = true;
EXPECT_TRUE_WAIT(ss_.Wait(SocketServer::kForever, process_io), kTimeout);
« no previous file with comments | « webrtc/rtc_base/messagequeue_unittest.cc ('k') | webrtc/rtc_base/physicalsocketserver_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698