| Index: base/synchronization/condition_variable_posix.cc
|
| diff --git a/base/synchronization/condition_variable_posix.cc b/base/synchronization/condition_variable_posix.cc
|
| index eff7053c893e0ad79911dd68fef1b893971afedc..7355cfaebaf2fbe35a7578fc5557beea7cf13e88 100644
|
| --- a/base/synchronization/condition_variable_posix.cc
|
| +++ b/base/synchronization/condition_variable_posix.cc
|
| @@ -2,13 +2,17 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "base/synchronization/condition_variable.h"
|
| -
|
| -#include <errno.h>
|
| +#include <pthread.h>
|
| +#include <stddef.h>
|
| +#include <sys/_structs.h>
|
| +#include <sys/errno.h>
|
| #include <sys/time.h>
|
|
|
| +#include "base/basictypes.h"
|
| #include "base/logging.h"
|
| +#include "base/synchronization/condition_variable.h"
|
| #include "base/synchronization/lock.h"
|
| +#include "base/synchronization/lock_impl.h"
|
| #include "base/time.h"
|
|
|
| namespace base {
|
|
|