| Index: content/browser/renderer_host/sandbox_ipc_linux.cc | 
| diff --git a/content/browser/renderer_host/sandbox_ipc_linux.cc b/content/browser/renderer_host/sandbox_ipc_linux.cc | 
| index 37445f07bc893bb724e3c5b86d946b498699fe23..dad523f99acbaf95364f38e9177a2fd14d8ddeda 100644 | 
| --- a/content/browser/renderer_host/sandbox_ipc_linux.cc | 
| +++ b/content/browser/renderer_host/sandbox_ipc_linux.cc | 
| @@ -341,7 +341,7 @@ void SandboxIPCHandler::HandleMakeSharedMemorySegment( | 
| int shm_fd = -1; | 
| base::SharedMemory shm; | 
| if (shm.Create(options)) | 
| -    shm_fd = shm.handle().fd; | 
| +    shm_fd = shm.handle().GetHandle(); | 
| base::Pickle reply; | 
| SendRendererReply(fds, reply, shm_fd); | 
| } | 
|  |