| Index: chrome/browser/platform_util_linux.cc
 | 
| diff --git a/chrome/browser/platform_util_linux.cc b/chrome/browser/platform_util_linux.cc
 | 
| index eb1dbc97c26f52bcaa3e148990b4534bb00272e8..e93cc0f08ade3227a870eef8e909dc81497dfd70 100644
 | 
| --- a/chrome/browser/platform_util_linux.cc
 | 
| +++ b/chrome/browser/platform_util_linux.cc
 | 
| @@ -35,12 +35,10 @@ void XDGUtil(const std::string& util, const std::string& arg) {
 | 
|      env.push_back(std::make_pair("GNOME_DISABLE_CRASH_DIALOG", ""));
 | 
|    }
 | 
|  
 | 
| -  base::file_handle_mapping_vector no_files;
 | 
|    base::ProcessHandle handle;
 | 
|    base::LaunchOptions options;
 | 
| -  options.process_handle = &handle;
 | 
|    options.environ = &env;
 | 
| -  if (base::LaunchProcess(argv, options))
 | 
| +  if (base::LaunchProcess(argv, options, &handle))
 | 
|      ProcessWatcher::EnsureProcessGetsReaped(handle);
 | 
|  }
 | 
|  
 | 
| 
 |