зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1025078 - [@nsPerformance::GetDOMTiming()], r=baku
This commit is contained in:
Родитель
11ef71dec3
Коммит
1644f6f5e9
|
@ -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
|
||||
|
|
Загрузка…
Ссылка в новой задаче