| Index: base/shared_memory_posix.cc
|
| diff --git a/base/shared_memory_posix.cc b/base/shared_memory_posix.cc
|
| index 843322b69801817458577ed7eaa92871497ff0d9..3e199ce13fe5ceec50f4e2bc067ab7d26c546810 100644
|
| --- a/base/shared_memory_posix.cc
|
| +++ b/base/shared_memory_posix.cc
|
| @@ -2,20 +2,26 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "base/shared_memory.h"
|
| -
|
| -#include <errno.h>
|
| -#include <fcntl.h>
|
| +#include <stdio.h>
|
| +#include <sys/errno.h>
|
| +#include <sys/fcntl.h>
|
| #include <sys/mman.h>
|
| #include <sys/stat.h>
|
| #include <unistd.h>
|
| +#include <string>
|
|
|
| +#include "base/basictypes.h"
|
| +#include "base/file_descriptor_posix.h"
|
| +#include "base/file_path.h"
|
| #include "base/file_util.h"
|
| #include "base/logging.h"
|
| -#include "base/threading/platform_thread.h"
|
| +#include "base/process.h"
|
| #include "base/safe_strerror_posix.h"
|
| +#include "base/shared_memory.h"
|
| +#include "base/string_piece.h"
|
| +#include "base/threading/platform_thread.h"
|
| #include "base/threading/thread_restrictions.h"
|
| -#include "base/utf_string_conversions.h"
|
| +#include "build/build_config.h"
|
|
|
| namespace base {
|
|
|
|
|