Chromium Code Reviews| Index: base/test/multiprocess_test.h |
| diff --git a/base/test/multiprocess_test.h b/base/test/multiprocess_test.h |
| index af7a18033655bce2432d14f2d07a045131be1090..b4cf700301b3e51cd39649a10a9de2f005b96aab 100644 |
| --- a/base/test/multiprocess_test.h |
| +++ b/base/test/multiprocess_test.h |
| @@ -58,6 +58,7 @@ class MultiProcessTest : public PlatformTest { |
| ProcessHandle SpawnChild(const std::string& procname, bool debug_on_start); |
| #if defined(OS_POSIX) |
| + // TODO(evan): see if we can delete this via more refactoring. |
| ProcessHandle SpawnChild(const std::string& procname, |
| const file_handle_mapping_vector& fds_to_map, |
| bool debug_on_start); |
| @@ -68,17 +69,9 @@ class MultiProcessTest : public PlatformTest { |
| bool debug_on_start); |
| private: |
| -#if defined(OS_WIN) |
| - ProcessHandle SpawnChildImpl(const std::string& procname, |
| - bool debug_on_start); |
| - |
| -#elif defined(OS_POSIX) |
| - // TODO(port): with the CommandLine refactoring, this code is very similar |
| - // to the Windows code. Investigate whether this can be made shorter. |
| ProcessHandle SpawnChildImpl(const std::string& procname, |
| const file_handle_mapping_vector& fds_to_map, |
|
Mark Mentovai
2011/07/12 20:45:00
This argument is still unused on Windows. Mention
Evan Martin
2011/07/12 21:22:29
I think my eventual refactoring target here is hav
|
| bool debug_on_start); |
| -#endif |
| DISALLOW_COPY_AND_ASSIGN(MultiProcessTest); |
| }; |