| Index: webrtc/p2p/base/faketransportcontroller.h
|
| diff --git a/webrtc/p2p/base/faketransportcontroller.h b/webrtc/p2p/base/faketransportcontroller.h
|
| index 7f0d9693ec021dc05de9b84a8cff18c9086bb616..7b7aec59080ea2a50a5cc7b6dbb70d7265cd9717 100644
|
| --- a/webrtc/p2p/base/faketransportcontroller.h
|
| +++ b/webrtc/p2p/base/faketransportcontroller.h
|
| @@ -207,9 +207,9 @@ class FakeTransportChannel : public TransportChannelImpl,
|
|
|
| PacketMessageData* packet = new PacketMessageData(data, len);
|
| if (async_) {
|
| - rtc::Thread::Current()->Post(this, 0, packet);
|
| + rtc::Thread::Current()->Post(RTC_FROM_HERE, this, 0, packet);
|
| } else {
|
| - rtc::Thread::Current()->Send(this, 0, packet);
|
| + rtc::Thread::Current()->Send(RTC_FROM_HERE, this, 0, packet);
|
| }
|
| rtc::SentPacket sent_packet(options.packet_id, rtc::TimeMillis());
|
| SignalSentPacket(this, sent_packet);
|
| @@ -520,6 +520,7 @@ class FakeTransportController : public TransportController {
|
|
|
| void Connect(FakeTransportController* dest) {
|
| network_thread()->Invoke<void>(
|
| + RTC_FROM_HERE,
|
| rtc::Bind(&FakeTransportController::Connect_n, this, dest));
|
| }
|
|
|
|
|