Bug 1025078 - [@nsPerformance::GetDOMTiming()], r=baku

This commit is contained in:
Olli Pettay 2014-06-13 22:36:25 +03:00
Родитель 11ef71dec3
Коммит 1644f6f5e9
1 изменённых файлов: 5 добавлений и 1 удалений

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

@ -3616,7 +3616,11 @@ nsGlobalWindow::GetPerformance(ErrorResult& aError)
{
FORWARD_TO_INNER_OR_THROW(GetPerformance, (aError), aError, nullptr);
return nsPIDOMWindow::GetPerformance();
nsPerformance* p = nsPIDOMWindow::GetPerformance();
if (!p) {
aError.Throw(NS_ERROR_FAILURE);
}
return p;
}
NS_IMETHODIMP