| Index: chrome/browser/importer/profile_import_process_host.cc
|
| ===================================================================
|
| --- chrome/browser/importer/profile_import_process_host.cc (revision 97969)
|
| +++ chrome/browser/importer/profile_import_process_host.cc (working copy)
|
| @@ -76,7 +76,12 @@
|
| }
|
|
|
| FilePath ProfileImportProcessHost::GetProfileImportProcessCmd() {
|
| - return GetChildPath(true);
|
| +#if defined(OS_LINUX)
|
| + int flags = CHILD_ALLOW_SELF;
|
| +#else
|
| + int flags = CHILD_NORMAL;
|
| +#endif
|
| + return GetChildPath(flags);
|
| }
|
|
|
| bool ProfileImportProcessHost::StartProcess() {
|
|
|