diff options
author | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-13 22:34:25 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-13 22:34:25 +0000 |
commit | 54ec76d27e99b76d16831d48c5c9a13dee8a9c93 (patch) | |
tree | dbde1343223b6cb6158e85fc33d23db6dd6e58eb /chrome/common/platform_util_linux.cc | |
parent | 89dd4eed72dfea6912684540a65842ad01773aa6 (diff) | |
download | chromium_src-54ec76d27e99b76d16831d48c5c9a13dee8a9c93.zip chromium_src-54ec76d27e99b76d16831d48c5c9a13dee8a9c93.tar.gz chromium_src-54ec76d27e99b76d16831d48c5c9a13dee8a9c93.tar.bz2 |
Revert r20553.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@20554 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/platform_util_linux.cc')
-rw-r--r-- | chrome/common/platform_util_linux.cc | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/chrome/common/platform_util_linux.cc b/chrome/common/platform_util_linux.cc index b13033c..988de92 100644 --- a/chrome/common/platform_util_linux.cc +++ b/chrome/common/platform_util_linux.cc @@ -6,10 +6,10 @@ #include <gtk/gtk.h> +#include "base/file_path.h" #include "base/file_util.h" #include "base/process_util.h" #include "base/string_util.h" -#include "chrome/common/process_watcher.h" namespace { @@ -18,9 +18,7 @@ void XDGOpen(const FilePath& path) { argv.push_back("xdg-open"); argv.push_back(path.value()); base::file_handle_mapping_vector no_files; - base::ProcessHandle handle; - if (base::LaunchApp(argv, no_files, false, &handle)) - ProcessWatcher::EnsureProcessGetsReaped(handle); + base::LaunchApp(argv, no_files, false, NULL); } } // namespace |