| Index: chrome/service/service_utility_process_host.cc
|
| ===================================================================
|
| --- chrome/service/service_utility_process_host.cc (revision 97969)
|
| +++ chrome/service/service_utility_process_host.cc (working copy)
|
| @@ -116,7 +116,12 @@
|
| }
|
|
|
| FilePath ServiceUtilityProcessHost::GetUtilityProcessCmd() {
|
| - return GetChildPath(true);
|
| +#if defined(OS_LINUX)
|
| + int flags = CHILD_ALLOW_SELF;
|
| +#else
|
| + int flags = CHILD_NORMAL;
|
| +#endif
|
| + return GetChildPath(flags);
|
| }
|
|
|
| bool ServiceUtilityProcessHost::CanShutdown() {
|
|
|