| Index: base/threading/simple_thread.cc
|
| diff --git a/base/threading/simple_thread.cc b/base/threading/simple_thread.cc
|
| index 444147797586d21ab542c3dbae127308763ae903..91e89a5156699c59297b56f46420370d3dd36561 100644
|
| --- a/base/threading/simple_thread.cc
|
| +++ b/base/threading/simple_thread.cc
|
| @@ -2,11 +2,18 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "base/threading/simple_thread.h"
|
| +#include <stdbool.h>
|
| +#include <stddef.h>
|
| +#include <queue>
|
| +#include <string>
|
| +#include <vector>
|
|
|
| #include "base/logging.h"
|
| -#include "base/threading/platform_thread.h"
|
| #include "base/string_number_conversions.h"
|
| +#include "base/synchronization/lock.h"
|
| +#include "base/synchronization/waitable_event.h"
|
| +#include "base/threading/platform_thread.h"
|
| +#include "base/threading/simple_thread.h"
|
|
|
| namespace base {
|
|
|
|
|