summaryrefslogtreecommitdiffstats
path: root/mojo/common
diff options
context:
space:
mode:
authorviettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-01-16 18:09:18 +0000
committerviettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-01-16 18:09:18 +0000
commit4c5fec0adacc755fab66fe892a2a90fc4f24db8f (patch)
treef9e41b654cca7a8673ee43370f85c55cae990792 /mojo/common
parenta2a083997562f39a5a50f135f5eb430fd786766a (diff)
downloadchromium_src-4c5fec0adacc755fab66fe892a2a90fc4f24db8f.zip
chromium_src-4c5fec0adacc755fab66fe892a2a90fc4f24db8f.tar.gz
chromium_src-4c5fec0adacc755fab66fe892a2a90fc4f24db8f.tar.bz2
Mojo: Add the ability to hook up a channel to the embedder API.
That is, starting with an OS "channel" (e.g., socket), you can tell the system to set up to send messages over it. It'll provide an initial "bootstrap" message pipe, from which you'll eventually be able to bring up more message pipes multiplexed on that channel (once you can pass handles in messages over the channel). Also: - Make a base class for tests that need an IO thread. - Add a way for test embedders to shut down the global instance. R=darin@chromium.org Review URL: https://codereview.chromium.org/140403002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@245251 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'mojo/common')
-rw-r--r--mojo/common/test/multiprocess_test_base_unittest.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/mojo/common/test/multiprocess_test_base_unittest.cc b/mojo/common/test/multiprocess_test_base_unittest.cc
index 6c8d756..114d22c 100644
--- a/mojo/common/test/multiprocess_test_base_unittest.cc
+++ b/mojo/common/test/multiprocess_test_base_unittest.cc
@@ -18,8 +18,7 @@
namespace mojo {
namespace {
-class MultiprocessTestBaseTest : public test::MultiprocessTestBase {
-};
+typedef test::MultiprocessTestBase MultiprocessTestBaseTest;
TEST_F(MultiprocessTestBaseTest, RunChild) {
// TODO(vtl): Not implemented on Windows yet.