Index: webrtc/p2p/base/p2ptransportchannel.cc |
diff --git a/webrtc/p2p/base/p2ptransportchannel.cc b/webrtc/p2p/base/p2ptransportchannel.cc |
index 2801c446461679011e091ccd5fd5af46dcb81cdf..639c8ee9adc5fa69c98afee6ee2a759e21540027 100644 |
--- a/webrtc/p2p/base/p2ptransportchannel.cc |
+++ b/webrtc/p2p/base/p2ptransportchannel.cc |
@@ -456,7 +456,7 @@ void P2PTransportChannel::Connect() { |
} |
// Start checking and pinging as the ports come in. |
- thread()->Post(this, MSG_CHECK_AND_PING); |
+ thread()->Post(FROM_HERE, this, MSG_CHECK_AND_PING); |
} |
void P2PTransportChannel::MaybeStartGathering() { |
@@ -1066,7 +1066,7 @@ void P2PTransportChannel::UpdateConnectionStates() { |
// Prepare for best candidate sorting. |
void P2PTransportChannel::RequestSort() { |
if (!sort_dirty_) { |
- worker_thread_->Post(this, MSG_SORT); |
+ worker_thread_->Post(FROM_HERE, this, MSG_SORT); |
sort_dirty_ = true; |
} |
} |
@@ -1308,7 +1308,7 @@ void P2PTransportChannel::OnCheckAndPing() { |
} |
} |
int delay = std::min(ping_interval, check_receiving_interval_); |
- thread()->PostDelayed(delay, this, MSG_CHECK_AND_PING); |
+ thread()->PostDelayed(FROM_HERE, delay, this, MSG_CHECK_AND_PING); |
} |
// A connection is considered a backup connection if the channel state |