| Index: base/test/test_suite.h
|
| diff --git a/base/test/test_suite.h b/base/test/test_suite.h
|
| index 37cad03f992f2e9db95b520c7bf1b32af702141d..8794803cb4e12d6f3dbb2bdb9c2bf251b3f27bad 100644
|
| --- a/base/test/test_suite.h
|
| +++ b/base/test/test_suite.h
|
| @@ -29,9 +29,6 @@
|
| typedef bool (*TestMatch)(const testing::TestInfo&);
|
|
|
| TestSuite(int argc, char** argv);
|
| -#if defined(OS_WIN)
|
| - TestSuite(int argc, wchar_t** argv);
|
| -#endif // defined(OS_WIN)
|
| virtual ~TestSuite();
|
|
|
| // Returns true if the test is marked as "MAYBE_".
|
| @@ -72,13 +69,8 @@
|
| scoped_ptr<base::AtExitManager> at_exit_manager_;
|
|
|
| private:
|
| - void InitializeFromCommandLine(int argc, char** argv);
|
| -#if defined(OS_WIN)
|
| - void InitializeFromCommandLine(int argc, wchar_t** argv);
|
| -#endif // defined(OS_WIN)
|
| -
|
| // Basic initialization for the test suite happens here.
|
| - void PreInitialize(bool create_at_exit_manager);
|
| + void PreInitialize(int argc, char** argv, bool create_at_exit_manager);
|
|
|
| bool initialized_command_line_;
|
|
|
|
|