Bug 1288821 - Follow-up to fix unused variable error; r=me

This commit is contained in:
Jim Chen 2016-08-04 10:00:00 -04:00
Родитель cad95cab52
Коммит 9fed7cc8df
1 изменённых файлов: 2 добавлений и 4 удалений

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

@ -63,17 +63,15 @@ NS_IMPL_ISUPPORTS(nsXULAlerts, nsIAlertsService, nsIAlertsDoNotDisturb, nsIAlert
/* static */ already_AddRefed<nsXULAlerts>
nsXULAlerts::GetInstance()
{
#ifdef MOZ_WIDGET_ANDROID
// Gecko on Android does not fully support XUL windows.
return nullptr;
#else
#ifndef MOZ_WIDGET_ANDROID
if (!gXULAlerts) {
gXULAlerts = new nsXULAlerts();
ClearOnShutdown(&gXULAlerts);
}
#endif // MOZ_WIDGET_ANDROID
RefPtr<nsXULAlerts> instance = gXULAlerts.get();
return instance.forget();
#endif // MOZ_WIDGET_ANDROID
}
NS_IMETHODIMP