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

Unified Diff: webrtc/p2p/base/transportcontroller_unittest.cc

Issue 2019423006: Adding more detail to MessageQueue::Dispatch logging. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
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 side-by-side diff with in-line comments
Download patch
Index: webrtc/p2p/base/transportcontroller_unittest.cc
diff --git a/webrtc/p2p/base/transportcontroller_unittest.cc b/webrtc/p2p/base/transportcontroller_unittest.cc
index 627975c90cad7a85275d57d0a49f49a67495a2f3..493903b323c9c97a0998dbab69eb85902e872c79 100644
--- a/webrtc/p2p/base/transportcontroller_unittest.cc
+++ b/webrtc/p2p/base/transportcontroller_unittest.cc
@@ -100,8 +100,11 @@ class TransportControllerTest : public testing::Test,
// Used for thread hopping test.
void CreateChannelsAndCompleteConnectionOnWorkerThread() {
- worker_thread_->Invoke<void>(rtc::Bind(
- &TransportControllerTest::CreateChannelsAndCompleteConnection_w, this));
+ worker_thread_->Invoke<void>(
+ FROM_HERE,
+ rtc::Bind(
+ &TransportControllerTest::CreateChannelsAndCompleteConnection_w,
+ this));
}
void CreateChannelsAndCompleteConnection_w() {

Powered by Google App Engine
This is Rietveld 408576698