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

Unified Diff: webrtc/modules/rtp_rtcp/test/BWEStandAlone/TestLoadGenerator.cc

Issue 1469013002: Move ThreadWrapper to ProcessThread in base. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: removed comment Created 5 years, 1 month 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
Index: webrtc/modules/rtp_rtcp/test/BWEStandAlone/TestLoadGenerator.cc
diff --git a/webrtc/modules/rtp_rtcp/test/BWEStandAlone/TestLoadGenerator.cc b/webrtc/modules/rtp_rtcp/test/BWEStandAlone/TestLoadGenerator.cc
index 0e3e87976c878686d212b90d3bc34cd1487402e9..236ceae9370fe117c2aa276b7d20bfc1600e0d48 100644
--- a/webrtc/modules/rtp_rtcp/test/BWEStandAlone/TestLoadGenerator.cc
+++ b/webrtc/modules/rtp_rtcp/test/BWEStandAlone/TestLoadGenerator.cc
@@ -76,8 +76,8 @@ int32_t TestLoadGenerator::Start (const char *threadName)
_eventPtr = EventWrapper::Create();
- _genThread = ThreadWrapper::CreateThread(SenderThreadFunction, this,
- threadName);
+ _genThread =
+ PlatformThread::CreateThread(SenderThreadFunction, this, threadName);
_running = true;
_genThread->Start();

Powered by Google App Engine
This is Rietveld 408576698