Bug 1452608 - Reduce unneeded AddRefing/Releasing when looking up custom element definitions, r=emilio

This commit is contained in:
Olli Pettay 2018-04-09 15:48:53 +03:00
Родитель 377b1b9417
Коммит ecbf2e2cf2
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -10103,12 +10103,12 @@ nsContentUtils::LookupCustomElementDefinition(nsIDocument* aDoc,
return nullptr;
}
nsCOMPtr<nsPIDOMWindowInner> window(aDoc->GetInnerWindow());
nsPIDOMWindowInner* window = aDoc->GetInnerWindow();
if (!window) {
return nullptr;
}
RefPtr<CustomElementRegistry> registry(window->CustomElements());
CustomElementRegistry* registry = window->CustomElements();
if (!registry) {
return nullptr;
}