| Index: webrtc/p2p/base/relayport.cc
|
| diff --git a/webrtc/p2p/base/relayport.cc b/webrtc/p2p/base/relayport.cc
|
| index df0be3919f40e19a11a2e2a251ae8ae43d267fb9..21dc41a126a222ff371457e2c0bf8dcec4978673 100644
|
| --- a/webrtc/p2p/base/relayport.cc
|
| +++ b/webrtc/p2p/base/relayport.cc
|
| @@ -506,7 +506,7 @@ void RelayEntry::Connect() {
|
|
|
| // If we failed to get a socket, move on to the next protocol.
|
| if (!socket) {
|
| - port()->thread()->Post(this, kMessageConnectTimeout);
|
| + port()->thread()->Post(RTC_FROM_HERE, this, kMessageConnectTimeout);
|
| return;
|
| }
|
|
|
| @@ -525,7 +525,7 @@ void RelayEntry::Connect() {
|
| if ((ra->proto == PROTO_TCP) || (ra->proto == PROTO_SSLTCP)) {
|
| socket->SignalClose.connect(this, &RelayEntry::OnSocketClose);
|
| socket->SignalConnect.connect(this, &RelayEntry::OnSocketConnect);
|
| - port()->thread()->PostDelayed(kSoftConnectTimeoutMs, this,
|
| + port()->thread()->PostDelayed(RTC_FROM_HERE, kSoftConnectTimeoutMs, this,
|
| kMessageConnectTimeout);
|
| } else {
|
| current_connection_->SendAllocateRequest(this, 0);
|
|
|