summaryrefslogtreecommitdiffstats
path: root/ipc/ipc_platform_file.h
diff options
context:
space:
mode:
Diffstat (limited to 'ipc/ipc_platform_file.h')
-rw-r--r--ipc/ipc_platform_file.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/ipc/ipc_platform_file.h b/ipc/ipc_platform_file.h
index e08b8a5..a99ed9d 100644
--- a/ipc/ipc_platform_file.h
+++ b/ipc/ipc_platform_file.h
@@ -1,4 +1,4 @@
-// Copyright (c) 2009 The Chromium Authors. All rights reserved.
+// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -9,6 +9,7 @@
#include "base/basictypes.h"
#include "base/platform_file.h"
+#include "base/process.h"
#if defined(OS_POSIX)
#include "base/file_descriptor_posix.h"
@@ -39,6 +40,11 @@ inline base::PlatformFile PlatformFileForTransitToPlatformFile(
#endif
}
+// Returns a file handle equivalent to |file| that can be used in |process|.
+PlatformFileForTransit GetFileHandleForProcess(base::PlatformFile file,
+ base::ProcessHandle process,
+ bool close_source_handle);
+
} // namespace IPC
#endif // IPC_IPC_PLATFORM_FILE_H_