From c97d1150f2cf9350ff5fb86f545f47dcedb1e387 Mon Sep 17 00:00:00 2001 From: nisse Date: Mon, 7 Nov 2016 01:27:55 -0800 Subject: [PATCH] Delete unneeded includes. BUG=None Review-Url: https://codereview.webrtc.org/2467013003 Cr-Commit-Position: refs/heads/master@{#14939} --- .../modules/congestion_controller/congestion_controller.cc | 5 ----- .../congestion_controller/include/congestion_controller.h | 1 - 2 files changed, 6 deletions(-) diff --git a/webrtc/modules/congestion_controller/congestion_controller.cc b/webrtc/modules/congestion_controller/congestion_controller.cc index f7e7e5625a..6b4e285413 100644 --- a/webrtc/modules/congestion_controller/congestion_controller.cc +++ b/webrtc/modules/congestion_controller/congestion_controller.cc @@ -15,19 +15,14 @@ #include #include "webrtc/base/checks.h" -#include "webrtc/base/constructormagic.h" #include "webrtc/base/logging.h" #include "webrtc/base/rate_limiter.h" #include "webrtc/base/socket.h" -#include "webrtc/base/thread_annotations.h" #include "webrtc/modules/bitrate_controller/include/bitrate_controller.h" #include "webrtc/modules/congestion_controller/probe_controller.h" -#include "webrtc/modules/remote_bitrate_estimator/include/send_time_history.h" #include "webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_abs_send_time.h" #include "webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_single_stream.h" -#include "webrtc/modules/utility/include/process_thread.h" #include "webrtc/system_wrappers/include/critical_section_wrapper.h" -#include "webrtc/video/payload_router.h" namespace webrtc { namespace { diff --git a/webrtc/modules/congestion_controller/include/congestion_controller.h b/webrtc/modules/congestion_controller/include/congestion_controller.h index eb6db33712..8663489d54 100644 --- a/webrtc/modules/congestion_controller/include/congestion_controller.h +++ b/webrtc/modules/congestion_controller/include/congestion_controller.h @@ -31,7 +31,6 @@ namespace webrtc { class BitrateController; class Clock; class ProbeController; -class ProcessThread; class RateLimiter; class RemoteBitrateEstimator; class RemoteBitrateObserver;