diff options
author | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-02-24 04:40:20 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-02-24 04:40:20 +0000 |
commit | a82af39780861fe06a8682791a0ac477fb167531 (patch) | |
tree | cca259d368103813583118654c37da99ab8fb6b0 /net/test | |
parent | fd170bb31f6438e7472d76805aa67cb9d409aa55 (diff) | |
download | chromium_src-a82af39780861fe06a8682791a0ac477fb167531.zip chromium_src-a82af39780861fe06a8682791a0ac477fb167531.tar.gz chromium_src-a82af39780861fe06a8682791a0ac477fb167531.tar.bz2 |
Cleanup: Remove base::environment_vector and base::file_handle_mapping_vector to StudlyCaps.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/9429039
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@123438 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/test')
-rw-r--r-- | net/test/test_server_posix.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/test/test_server_posix.cc b/net/test/test_server_posix.cc index aef7b0c..f15acc3 100644 --- a/net/test/test_server_posix.cc +++ b/net/test/test_server_posix.cc @@ -109,7 +109,7 @@ bool TestServer::LaunchPython(const FilePath& testserver_path) { child_fd_ = pipefd[0]; child_fd_closer_.reset(&child_fd_); file_util::ScopedFD write_closer(&pipefd[1]); - base::file_handle_mapping_vector map_write_fd; + base::FileHandleMappingVector map_write_fd; map_write_fd.push_back(std::make_pair(pipefd[1], pipefd[1])); python_command.AppendArg("--startup-pipe=" + base::IntToString(pipefd[1])); |