summaryrefslogtreecommitdiffstats
path: root/base/multiprocess_test.h
diff options
context:
space:
mode:
authorjeremy@chromium.org <jeremy@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2008-10-27 20:49:55 +0000
committerjeremy@chromium.org <jeremy@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2008-10-27 20:49:55 +0000
commit9c73c775a14581f1b005c30242be0354afe64bfd (patch)
tree5c3de6ed874caf93886fba43d951c56ebc7c704b /base/multiprocess_test.h
parent467751964600388345aa537e1436b036d159ac92 (diff)
downloadchromium_src-9c73c775a14581f1b005c30242be0354afe64bfd.zip
chromium_src-9c73c775a14581f1b005c30242be0354afe64bfd.tar.gz
chromium_src-9c73c775a14581f1b005c30242be0354afe64bfd.tar.bz2
Enable stats_tabe_unittest.cc on OS X.
Review URL: http://codereview.chromium.org/8160 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@4024 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/multiprocess_test.h')
-rw-r--r--base/multiprocess_test.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/base/multiprocess_test.h b/base/multiprocess_test.h
index 15085d9..fb02107 100644
--- a/base/multiprocess_test.h
+++ b/base/multiprocess_test.h
@@ -6,6 +6,7 @@
#define BASE_MULTIPROCESS_TEST_H__
#include "base/command_line.h"
+#include "base/platform_test.h"
#include "base/process_util.h"
#include "base/string_util.h"
#include "testing/gtest/include/gtest/gtest.h"
@@ -30,11 +31,11 @@ static const wchar_t kRunClientProcess[] = L"client";
// 3) Create a mainline function for the child processes
// 4) Call SpawnChild("foo"), where "foo" is the name of
// the function you wish to run in the child processes.
-// 5) On posix, add the function's name to the list in the file
+// 5) On Linux, add the function's name to the list in the file
// base_unittests_exported_symbols.version
// That's it!
//
-class MultiProcessTest : public testing::Test {
+class MultiProcessTest : public PlatformTest {
public:
// Prototype function for a client function. Multi-process
// clients must provide a callback with this signature to run.