| Index: chrome/test/automation/automation_proxy.cc
|
| diff --git a/chrome/test/automation/automation_proxy.cc b/chrome/test/automation/automation_proxy.cc
|
| index 4704deb243ae1655e795bca3dba10bd41508cac1..c5835029095a5b4b05c7c3c6883dc3fcf052e3f6 100644
|
| --- a/chrome/test/automation/automation_proxy.cc
|
| +++ b/chrome/test/automation/automation_proxy.cc
|
| @@ -433,12 +433,8 @@ scoped_refptr<BrowserProxy> AutomationProxy::GetLastActiveBrowserWindow() {
|
| }
|
|
|
| #if defined(OS_POSIX)
|
| -base::file_handle_mapping_vector AutomationProxy::fds_to_map() const {
|
| - base::file_handle_mapping_vector map;
|
| - const int ipcfd = channel_->GetClientFileDescriptor();
|
| - if (ipcfd > -1)
|
| - map.push_back(std::make_pair(ipcfd, kPrimaryIPCChannel + 3));
|
| - return map;
|
| +int AutomationProxy::TakeClientFileDescriptor() {
|
| + return channel_->TakeClientFileDescriptor();
|
| }
|
| #endif // defined(OS_POSIX)
|
|
|
|
|