Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(785)

Unified Diff: base/shared_memory_posix.cc

Issue 6410105: run iwyu on base! Base URL: svn://svn.chromium.org/chrome/trunk/src/base
Patch Set: Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « base/sha2.cc ('k') | base/string16.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 {
« no previous file with comments | « base/sha2.cc ('k') | base/string16.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698