Revert "[cleanup] Remove useless includes."

This reverts commit be8b5348c76105f8fe869b0cae4065ddca106419.

Reason for revert: Breaks downstream project

Original change's description:
> [cleanup] Remove useless includes.
> 
> Manual cleanup guided by include-what-you-use diagnostic.
> 
> Bug: webrtc:8311
> Change-Id: I00be03392cc7ee005101427ea7dc701621ccea68
> Reviewed-on: https://webrtc-review.googlesource.com/c/103320
> Commit-Queue: Yves Gerey <yvesg@webrtc.org>
> Reviewed-by: Patrik Höglund <phoglund@webrtc.org>
> Cr-Commit-Position: refs/heads/master@{#25013}

TBR=phoglund@google.com,phoglund@webrtc.org,yvesg@webrtc.org

Change-Id: I7a6e1cdfef685173b76f234ad598083043dcd9a0
No-Presubmit: true
No-Tree-Checks: true
No-Try: true
Bug: webrtc:8311
Reviewed-on: https://webrtc-review.googlesource.com/c/104022
Reviewed-by: Oleh Prypin <oprypin@webrtc.org>
Commit-Queue: Oleh Prypin <oprypin@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#25015}
This commit is contained in:
Oleh Prypin
2018-10-05 13:13:38 +00:00
committed by Commit Bot
parent 1cd7391c00
commit 96a0f61917
105 changed files with 169 additions and 149 deletions

View File

@ -10,17 +10,11 @@
#include "rtc_base/task_queue.h"
#include <errno.h> // for EAGAIN, errno
#include <fcntl.h>
#include <pthread.h> // for pthread_getspecific
#include <signal.h>
#include <stdint.h> // for uint32_t
#include <time.h> // for nanosleep, timespec
#include <string.h>
#include <unistd.h>
#include <list>
#include <memory> // for unique_ptr, allocator
#include <type_traits> // for remove_reference<>::...
#include <utility> // for move
#include "base/third_party/libevent/event.h"
#include "rtc_base/checks.h"
@ -28,13 +22,11 @@
#include "rtc_base/logging.h"
#include "rtc_base/numerics/safe_conversions.h"
#include "rtc_base/platform_thread.h"
#include "rtc_base/platform_thread_types.h" // for CurrentThreadRef
#include "rtc_base/refcount.h"
#include "rtc_base/refcountedobject.h"
#include "rtc_base/scoped_ref_ptr.h" // for scoped_refptr
#include "rtc_base/system/unused.h"
#include "rtc_base/task_queue.h"
#include "rtc_base/task_queue_posix.h"
#include "rtc_base/thread_annotations.h" // for RTC_GUARDED_BY
#include "rtc_base/timeutils.h"
namespace rtc {