diff options
author | agl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-07 00:39:26 +0000 |
---|---|---|
committer | agl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-07 00:39:26 +0000 |
commit | 526776cf6ba5d6370ef28c9b483141fb0e4b1ae6 (patch) | |
tree | 5dd943dee4f2c74661c97f09a04b2358b16e3185 /chrome/common/common.scons | |
parent | 95284326ea69903454907a200ad43ec41d158105 (diff) | |
download | chromium_src-526776cf6ba5d6370ef28c9b483141fb0e4b1ae6.zip chromium_src-526776cf6ba5d6370ef28c9b483141fb0e4b1ae6.tar.gz chromium_src-526776cf6ba5d6370ef28c9b483141fb0e4b1ae6.tar.bz2 |
FileDescriptor: passing fds over IPC
This patch introduces a FileDescriptor object which can be included in IPC messages and will perform the magic needed to pass file descriptors over IPC. After some consideration, Windows will continue to do the current DuplicateHandle tricks.
Review URL: http://codereview.chromium.org/20027
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@9369 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/common.scons')
-rw-r--r-- | chrome/common/common.scons | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/common/common.scons b/chrome/common/common.scons index 71f1761..7eca809 100644 --- a/chrome/common/common.scons +++ b/chrome/common/common.scons @@ -218,7 +218,8 @@ input_files = ChromeFileList([ if not env.Bit('windows'): # TODO(port): This is temporary so we can link. input_files.Append( - 'temp_scaffolding_stubs.cc' + 'temp_scaffolding_stubs.cc', + 'file_descriptor_posix.cc', ) # TODO(port): Port these. |