diff options
author | dmaclach@chromium.org <dmaclach@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-18 23:52:00 +0000 |
---|---|---|
committer | dmaclach@chromium.org <dmaclach@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-18 23:52:00 +0000 |
commit | f9e904945c9266d0f77e174ccfd95f468699f2f6 (patch) | |
tree | 27da815f5492ce8f6f6e2376fdf960be683064c0 /ipc/file_descriptor_set_posix_unittest.cc | |
parent | be3d80d5e43ddb7b899e16d15e1cf9d0a7dac8c2 (diff) | |
download | chromium_src-f9e904945c9266d0f77e174ccfd95f468699f2f6.zip chromium_src-f9e904945c9266d0f77e174ccfd95f468699f2f6.tar.gz chromium_src-f9e904945c9266d0f77e174ccfd95f468699f2f6.tar.bz2 |
Revert 69660 - Add support for sockets that can listen and accept a connection.
These sockets allow one connection at a time, however clients can
connect and disconnect repeatedly.
These are going to be used by Cloud Print, Remoting and
Automation.
BUG=NONE
TEST=BUILD
Review URL: http://codereview.chromium.org/5749001
TBR=dmaclach@chromium.org
Review URL: http://codereview.chromium.org/6045002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69662 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ipc/file_descriptor_set_posix_unittest.cc')
-rw-r--r-- | ipc/file_descriptor_set_posix_unittest.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ipc/file_descriptor_set_posix_unittest.cc b/ipc/file_descriptor_set_posix_unittest.cc index 5fc8c50..31b8bf4 100644 --- a/ipc/file_descriptor_set_posix_unittest.cc +++ b/ipc/file_descriptor_set_posix_unittest.cc @@ -4,13 +4,12 @@ // This test is POSIX only. -#include "ipc/file_descriptor_set_posix.h" - #include <unistd.h> #include <fcntl.h> #include "base/basictypes.h" #include "base/eintr_wrapper.h" +#include "ipc/file_descriptor_set_posix.h" #include "testing/gtest/include/gtest/gtest.h" namespace { |