Index: content/browser/utility_process_host.cc |
=================================================================== |
--- content/browser/utility_process_host.cc (revision 97969) |
+++ content/browser/utility_process_host.cc (working copy) |
@@ -61,7 +61,12 @@ |
} |
FilePath UtilityProcessHost::GetUtilityProcessCmd() { |
- return GetChildPath(true); |
+#if defined(OS_LINUX) |
+ int flags = CHILD_ALLOW_SELF; |
+#else |
+ int flags = CHILD_NORMAL; |
+#endif |
+ return GetChildPath(flags); |
} |
bool UtilityProcessHost::StartProcess() { |