Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(885)

Unified Diff: base/test/multiprocess_test.cc

Issue 9429039: Cleanup: Remove base::environment_vector and base::file_handle_mapping_vector to StudlyCaps. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « base/test/multiprocess_test.h ('k') | chrome/app/nacl_fork_delegate_linux.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/test/multiprocess_test.cc
===================================================================
--- base/test/multiprocess_test.cc (revision 123176)
+++ base/test/multiprocess_test.cc (working copy)
@@ -7,11 +7,6 @@
#include "base/base_switches.h"
#include "base/command_line.h"
-#if defined(OS_POSIX)
-#include <sys/types.h>
-#include <unistd.h>
-#endif
-
namespace base {
MultiProcessTest::MultiProcessTest() {
@@ -19,14 +14,14 @@
ProcessHandle MultiProcessTest::SpawnChild(const std::string& procname,
bool debug_on_start) {
- file_handle_mapping_vector empty_file_list;
+ FileHandleMappingVector empty_file_list;
return SpawnChildImpl(procname, empty_file_list, debug_on_start);
}
#if defined(OS_POSIX)
ProcessHandle MultiProcessTest::SpawnChild(
const std::string& procname,
- const file_handle_mapping_vector& fds_to_map,
+ const FileHandleMappingVector& fds_to_map,
bool debug_on_start) {
return SpawnChildImpl(procname, fds_to_map, debug_on_start);
}
@@ -43,7 +38,7 @@
ProcessHandle MultiProcessTest::SpawnChildImpl(
const std::string& procname,
- const file_handle_mapping_vector& fds_to_map,
+ const FileHandleMappingVector& fds_to_map,
bool debug_on_start) {
ProcessHandle handle = kNullProcessHandle;
base::LaunchOptions options;
« no previous file with comments | « base/test/multiprocess_test.h ('k') | chrome/app/nacl_fork_delegate_linux.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698