Bug 1041525: Disable GMP OOPInit() during SyncLaunch() until crashreporting fully hooked up r=gfritzsche

This commit is contained in:
Randell Jesup 2014-07-21 10:24:29 -04:00
parent bca0d58a70
commit 444c30831c

View File

@ -241,11 +241,18 @@ uint32_t GeckoChildProcessHost::GetSupportedArchitecturesForProcessType(GeckoPro
void
GeckoChildProcessHost::PrepareLaunch()
{
#ifndef GMP_CRASHREPORTER_READY
// See bug 1041525
if (mProcessType != GeckoProcessType_GMPlugin) {
#endif
#ifdef MOZ_CRASHREPORTER
if (CrashReporter::GetEnabled()) {
CrashReporter::OOPInit();
}
#endif
#ifndef GMP_CRASHREPORTER_READY
}
#endif
#ifdef XP_WIN
if (mProcessType == GeckoProcessType_Plugin) {