From 88718fdce790cfc5c12160f2dfcc8323e20c5681 Mon Sep 17 00:00:00 2001 From: Marina Ciocea Date: Tue, 9 Apr 2019 10:49:38 +0200 Subject: [PATCH] Fix comment - ice transport is cleared on the networking thread. Bug: chromium:907849 Change-Id: I15afe28d3fb2a175a6e2e7491dc33d36f9f9cd32 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/132008 Commit-Queue: Marina Ciocea Commit-Queue: Harald Alvestrand Reviewed-by: Harald Alvestrand Cr-Commit-Position: refs/heads/master@{#27509} --- pc/ice_transport.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pc/ice_transport.cc b/pc/ice_transport.cc index e3953547ba..ccc5ecd7f2 100644 --- a/pc/ice_transport.cc +++ b/pc/ice_transport.cc @@ -16,9 +16,9 @@ namespace webrtc { IceTransportWithPointer::~IceTransportWithPointer() { - // We depend on the signaling thread to call Clear() before dropping + // We depend on the networking thread to call Clear() before dropping // its last reference to this object; if the destructor is called - // on the signaling thread, it's OK to not have called Clear(). + // on the networking thread, it's OK to not have called Clear(). if (internal_) { RTC_DCHECK_RUN_ON(creator_thread_); }