summaryrefslogtreecommitdiff
path: root/www/chromium/files/patch-chrome__test__chrome_process_util.cc
diff options
context:
space:
mode:
Diffstat (limited to 'www/chromium/files/patch-chrome__test__chrome_process_util.cc')
-rw-r--r--www/chromium/files/patch-chrome__test__chrome_process_util.cc23
1 files changed, 0 insertions, 23 deletions
diff --git a/www/chromium/files/patch-chrome__test__chrome_process_util.cc b/www/chromium/files/patch-chrome__test__chrome_process_util.cc
deleted file mode 100644
index a4899669fadf..000000000000
--- a/www/chromium/files/patch-chrome__test__chrome_process_util.cc
+++ /dev/null
@@ -1,23 +0,0 @@
---- ./chrome/test/chrome_process_util.cc.orig 2010-12-16 02:12:11.000000000 +0100
-+++ ./chrome/test/chrome_process_util.cc 2010-12-20 20:15:08.000000000 +0100
-@@ -61,7 +61,7 @@
- result.push_back(process_entry->pid());
- }
-
--#if defined(OS_LINUX)
-+#if defined(OS_LINUX) || defined(OS_FREEBSD)
- // On Linux we might be running with a zygote process for the renderers.
- // Because of that we sweep the list of processes again and pick those which
- // are children of one of the processes that we've already seen.
-@@ -72,9 +72,9 @@
- while (const base::ProcessEntry* process_entry = it.NextProcessEntry())
- result.push_back(process_entry->pid());
- }
--#endif // defined(OS_LINUX)
-+#endif // defined(OS_LINUX) || defined(OS_FREEBSD)
-
--#if defined(OS_LINUX) || defined(OS_MACOSX)
-+#if defined(OS_POSIX)
- // On Mac OS X we run the subprocesses with a different bundle, and
- // on Linux via /proc/self/exe, so they end up with a different
- // name. We must collect them in a second pass.