diff options
author | dmaclach@chromium.org <dmaclach@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-20 06:19:07 +0000 |
---|---|---|
committer | dmaclach@chromium.org <dmaclach@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-20 06:19:07 +0000 |
commit | 9a44a4db61927c16d5670163faa319e682f7e6fd (patch) | |
tree | 5bdbe999dfccbc7a8d0d3e2cc9bf3924487fcfe0 /ipc/ipc_switches.cc | |
parent | 25bfd35858599448c8739ec6d5d93b2a4fef09e3 (diff) | |
download | chromium_src-9a44a4db61927c16d5670163faa319e682f7e6fd.zip chromium_src-9a44a4db61927c16d5670163faa319e682f7e6fd.tar.gz chromium_src-9a44a4db61927c16d5670163faa319e682f7e6fd.tar.bz2 |
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
Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=69660
Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=69690
Review URL: http://codereview.chromium.org/5749001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69694 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ipc/ipc_switches.cc')
-rw-r--r-- | ipc/ipc_switches.cc | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/ipc/ipc_switches.cc b/ipc/ipc_switches.cc index 2a8f470..bcb1225 100644 --- a/ipc/ipc_switches.cc +++ b/ipc/ipc_switches.cc @@ -11,10 +11,6 @@ namespace switches { // Can't find the switch you are looking for? try looking in // base/base_switches.cc instead. -// On POSIX only: use FIFO for IPC channels so that "unrelated" process -// can connect to a channel, provided it knows its name. For debugging purposes. -const char kIPCUseFIFO[] = "ipc-use-fifo"; - // The value of this switch tells the child process which // IPC channel the browser expects to use to communicate with it. const char kProcessChannelID[] = "channel"; |