| Index: chrome/browser/shell_integration_linux.cc
|
| diff --git a/chrome/browser/shell_integration_linux.cc b/chrome/browser/shell_integration_linux.cc
|
| index 43d6e6822fe56a0240778d9a1aac8d242c83378c..1c6e7e4765bdf7f0738276701fd9462b962d8e60 100644
|
| --- a/chrome/browser/shell_integration_linux.cc
|
| +++ b/chrome/browser/shell_integration_linux.cc
|
| @@ -59,9 +59,8 @@ bool LaunchXdgUtility(const std::vector<std::string>& argv, int* exit_code) {
|
|
|
| base::ProcessHandle handle;
|
| base::LaunchOptions options;
|
| - options.process_handle = &handle;
|
| options.fds_to_remap = &no_stdin;
|
| - if (!base::LaunchProcess(argv, options)) {
|
| + if (!base::LaunchProcess(argv, options, &handle)) {
|
| close(devnull);
|
| return false;
|
| }
|
|
|