Bug 1504188 - Don't define AppendSandboxParams if building the sandbox is disabled. r=haik

--HG--
extra : rebase_source : 6ccb5a57b5a19b02deb25893f2a1c651346a4d4a
This commit is contained in:
Marco Castelluccio 2018-11-02 13:59:43 +01:00
Родитель bb763668fd
Коммит 0ad6467779
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -2127,7 +2127,7 @@ ContentParent::GetTestShellSingleton()
return static_cast<TestShellParent*>(p);
}
#ifdef XP_MACOSX
#if defined(XP_MACOSX) && defined(MOZ_CONTENT_SANDBOX)
void
ContentParent::AppendSandboxParams(std::vector<std::string> &aArgs)
{
@ -2239,7 +2239,7 @@ ContentParent::AppendSandboxParams(std::vector<std::string> &aArgs)
}
#endif // DEBUG
}
#endif // XP_MACOSX
#endif // XP_MACOSX && MOZ_CONTENT_SANDBOX
bool
ContentParent::LaunchSubprocess(ProcessPriority aInitialPriority /* = PROCESS_PRIORITY_FOREGROUND */)