зеркало из https://github.com/mozilla/pjs.git
Follow up to bug 582032, bustage fix for non-IPC builds - add needed ifdef.
This commit is contained in:
Родитель
849397d97c
Коммит
acca758782
|
@ -771,6 +771,7 @@ nsXULAppInfo::GetProcessType(PRUint32* aResult)
|
|||
NS_IMETHODIMP
|
||||
nsXULAppInfo::EnsureContentProcess()
|
||||
{
|
||||
#ifdef MOZ_IPC
|
||||
if (XRE_GetProcessType() != GeckoProcessType_Default)
|
||||
return NS_ERROR_NOT_AVAILABLE;
|
||||
|
||||
|
@ -778,6 +779,9 @@ nsXULAppInfo::EnsureContentProcess()
|
|||
if (!c)
|
||||
return NS_ERROR_NOT_AVAILABLE;
|
||||
return NS_OK;
|
||||
#else
|
||||
return NS_ERROR_NOT_AVIALABLE;
|
||||
#endif
|
||||
}
|
||||
|
||||
NS_IMETHODIMP
|
||||
|
|
Загрузка…
Ссылка в новой задаче