summaryrefslogtreecommitdiffstats
path: root/ipc/ipc_tests.h
diff options
context:
space:
mode:
authorsehr@google.com <sehr@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-11-24 16:14:53 +0000
committersehr@google.com <sehr@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-11-24 16:14:53 +0000
commit0840cc764d0f0b693d3762c356b7d35e58d343af (patch)
tree8f1f90ef17b8e395f27f239beaf86ce9b5af6467 /ipc/ipc_tests.h
parent160673757540777e7db373c56b61673f05870c99 (diff)
downloadchromium_src-0840cc764d0f0b693d3762c356b7d35e58d343af.zip
chromium_src-0840cc764d0f0b693d3762c356b7d35e58d343af.tar.gz
chromium_src-0840cc764d0f0b693d3762c356b7d35e58d343af.tar.bz2
This adds the first version of SyncSocket to base, along with a trivial unittest.
SyncSocket provides a blocking send/receive that can be used for synchronization. Review URL: http://codereview.chromium.org/418004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@32927 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ipc/ipc_tests.h')
-rw-r--r--ipc/ipc_tests.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/ipc/ipc_tests.h b/ipc/ipc_tests.h
index e800883..755dafd 100644
--- a/ipc/ipc_tests.h
+++ b/ipc/ipc_tests.h
@@ -15,13 +15,15 @@ enum ChildType {
TEST_DESCRIPTOR_CLIENT,
TEST_DESCRIPTOR_CLIENT_SANDBOXED,
TEST_REFLECTOR,
- FUZZER_SERVER
+ FUZZER_SERVER,
+ SYNC_SOCKET_SERVER
};
// The different channel names for the child processes.
extern const char kTestClientChannel[];
extern const char kReflectorChannel[];
extern const char kFuzzerChannel[];
+extern const char kSyncSocketChannel[];
class MessageLoopForIO;
namespace IPC {