| Index: base/process/process_handle_posix.cc
 | 
| diff --git a/base/process/process_handle_posix.cc b/base/process/process_handle_posix.cc
 | 
| index 94b2c2ff1a1567931dfa38f518fb192eabe4e8b7..3d92300a7bcadf809559aefdcd46bccb12d0c4fb 100644
 | 
| --- a/base/process/process_handle_posix.cc
 | 
| +++ b/base/process/process_handle_posix.cc
 | 
| @@ -23,14 +23,6 @@ bool OpenProcessHandle(ProcessId pid, ProcessHandle* handle) {
 | 
|    return true;
 | 
|  }
 | 
|  
 | 
| -bool OpenProcessHandleWithAccess(ProcessId pid,
 | 
| -                                 uint32 access_flags,
 | 
| -                                 ProcessHandle* handle) {
 | 
| -  // On POSIX permissions are checked for each operation on process,
 | 
| -  // not when opening a "handle".
 | 
| -  return OpenProcessHandle(pid, handle);
 | 
| -}
 | 
| -
 | 
|  void CloseProcessHandle(ProcessHandle process) {
 | 
|    // See OpenProcessHandle, nothing to do.
 | 
|    return;
 | 
| 
 |