| Index: base/threading/thread.cc
|
| diff --git a/base/threading/thread.cc b/base/threading/thread.cc
|
| index c0fb53739de51e43324cff8a8555f19752f90098..2f9603ad6d1a7ce234ea65df2ba2f06d80fc7e43 100644
|
| --- a/base/threading/thread.cc
|
| +++ b/base/threading/thread.cc
|
| @@ -2,12 +2,23 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "base/threading/thread.h"
|
| +#include <stdbool.h>
|
| +#include <stddef.h>
|
| +#include <string>
|
|
|
| +#include "base/basictypes.h"
|
| #include "base/lazy_instance.h"
|
| +#include "base/logging.h"
|
| +#include "base/message_loop.h"
|
| +#include "base/message_loop_proxy.h"
|
| +#include "base/ref_counted.h"
|
| +#include "base/synchronization/waitable_event.h"
|
| +#include "base/task.h"
|
| #include "base/third_party/dynamic_annotations/dynamic_annotations.h"
|
| +#include "base/threading/platform_thread.h"
|
| +#include "base/threading/thread.h"
|
| #include "base/threading/thread_local.h"
|
| -#include "base/synchronization/waitable_event.h"
|
| +#include "base/tracked.h"
|
|
|
| namespace base {
|
|
|
|
|