| Index: webrtc/p2p/base/relayport.cc
|
| diff --git a/webrtc/p2p/base/relayport.cc b/webrtc/p2p/base/relayport.cc
|
| index 7f05e1b1ef7159d21991221ef539b85c36a3eea4..7c2aded617b57e8d98ad4ad83362498ec3a32a61 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(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(FROM_HERE, kSoftConnectTimeoutMs, this,
|
| kMessageConnectTimeout);
|
| } else {
|
| current_connection_->SendAllocateRequest(this, 0);
|
|
|