diff --git a/pc/data_channel_controller.h b/pc/data_channel_controller.h index 854da59a43..11f0607248 100644 --- a/pc/data_channel_controller.h +++ b/pc/data_channel_controller.h @@ -233,11 +233,6 @@ class DataChannelController : public RtpDataChannelProviderInterface, sigslot::signal1 SignalSctpDataChannelCreated_ RTC_GUARDED_BY(signaling_thread()); - // Used from the network thread to invoke data channel transport signals on - // the signaling thread. - rtc::AsyncInvoker data_channel_transport_invoker_ - RTC_GUARDED_BY(network_thread()); - // Owning PeerConnection. PeerConnection* const pc_; // The weak pointers must be dereferenced and invalidated on the signalling diff --git a/pc/rtp_data_channel.h b/pc/rtp_data_channel.h index f1a86baa94..390287b7c5 100644 --- a/pc/rtp_data_channel.h +++ b/pc/rtp_data_channel.h @@ -25,7 +25,6 @@ #include "media/base/media_channel.h" #include "pc/channel.h" #include "pc/data_channel_utils.h" -#include "rtc_base/async_invoker.h" #include "rtc_base/copy_on_write_buffer.h" #include "rtc_base/third_party/sigslot/sigslot.h" #include "rtc_base/thread.h" diff --git a/pc/stats_collector.cc b/pc/stats_collector.cc index fdcbb8aac6..917d055eff 100644 --- a/pc/stats_collector.cc +++ b/pc/stats_collector.cc @@ -668,7 +668,7 @@ void StatsCollector::UpdateStats( ExtractSessionInfo(); // TODO(tommi): All of these hop over to the worker thread to fetch - // information. We could use an AsyncInvoker to run all of these and post + // information. We could post a task to run all of these and post // the information back to the signaling thread where we can create and // update stats reports. That would also clean up the threading story a bit // since we'd be creating/updating the stats report objects consistently on diff --git a/rtc_base/fake_mdns_responder.h b/rtc_base/fake_mdns_responder.h index 8133f9b9b7..1f87cf4b81 100644 --- a/rtc_base/fake_mdns_responder.h +++ b/rtc_base/fake_mdns_responder.h @@ -15,7 +15,6 @@ #include #include -#include "rtc_base/async_invoker.h" #include "rtc_base/ip_address.h" #include "rtc_base/location.h" #include "rtc_base/mdns_responder_interface.h"