summaryrefslogtreecommitdiffstats
path: root/base/memory/shared_memory.h
diff options
context:
space:
mode:
Diffstat (limited to 'base/memory/shared_memory.h')
-rw-r--r--base/memory/shared_memory.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/base/memory/shared_memory.h b/base/memory/shared_memory.h
index 8e32e72..50b61c4 100644
--- a/base/memory/shared_memory.h
+++ b/base/memory/shared_memory.h
@@ -22,7 +22,6 @@
#if defined(OS_POSIX)
#include "base/file_descriptor_posix.h"
#include "base/file_util.h"
-#include "base/files/scoped_file.h"
#endif
namespace base {
@@ -260,7 +259,7 @@ class BASE_EXPORT SharedMemory {
private:
#if defined(OS_POSIX) && !defined(OS_NACL)
- bool PrepareMapFile(file_util::ScopedFILE fp, base::ScopedFD readonly);
+ bool PrepareMapFile(file_util::ScopedFILE fp, file_util::ScopedFD readonly);
bool FilePathForMemoryName(const std::string& mem_name, FilePath* path);
void LockOrUnlockCommon(int function);
#endif