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

Side by Side Diff: content/common/sandbox_util.h

Issue 12805004: Remove mention of the nacl process in content. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 9 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 unified diff | Download patch | Annotate | Revision Log
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CONTENT_COMMON_SANDBOX_UTIL_H_
6 #define CONTENT_COMMON_SANDBOX_UTIL_H_
7
8 #include "base/process.h"
9 #include "ipc/ipc_platform_file.h"
10
11 // This file contains cross-platform sandbox code internal to content.
12
13 namespace content {
14
15 // Platform neutral wrapper for making an exact copy of a handle for use in
16 // the target process. On Windows this wraps BrokerDuplicateHandle() with the
17 // DUPLICATE_SAME_ACCESS flag. On posix it behaves essentially the same as
18 // IPC::GetFileHandleForProcess()
19 IPC::PlatformFileForTransit BrokerGetFileHandleForProcess(
20 base::PlatformFile handle,
21 base::ProcessId target_process_id,
22 bool should_close_source);
23
24 } // namespace content
25
26 #endif // CONTENT_COMMON_SANDBOX_UTIL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698