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 /ipc | |
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 'ipc')
-rw-r--r-- | ipc/ipc_tests.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ipc/ipc_tests.cc b/ipc/ipc_tests.cc index 2a78f44..8b22fc3 100644 --- a/ipc/ipc_tests.cc +++ b/ipc/ipc_tests.cc @@ -84,7 +84,7 @@ base::ProcessHandle IPCChannelTest::SpawnChild(ChildType child_type, bool debug_on_start = CommandLine::ForCurrentProcess()->HasSwitch(switches::kDebugChildren); - base::file_handle_mapping_vector fds_to_map; + base::FileHandleMappingVector fds_to_map; const int ipcfd = channel->GetClientFileDescriptor(); if (ipcfd > -1) { fds_to_map.push_back(std::pair<int, int>(ipcfd, kPrimaryIPCChannel + 3)); @@ -301,7 +301,7 @@ TEST_F(IPCChannelTest, ChannelProxyTest) { #elif defined(OS_POSIX) bool debug_on_start = CommandLine::ForCurrentProcess()->HasSwitch( switches::kDebugChildren); - base::file_handle_mapping_vector fds_to_map; + base::FileHandleMappingVector fds_to_map; const int ipcfd = chan.GetClientFileDescriptor(); if (ipcfd > -1) { fds_to_map.push_back(std::pair<int, int>(ipcfd, kPrimaryIPCChannel + 3)); @@ -466,6 +466,7 @@ class ChannelReflectorListener : public IPC::Channel::Listener { channel_->Send(msg); return true; } + private: IPC::Channel *channel_; int count_messages_; |