From ca596f2823f90c1416db8a317ac8eb22c9119bbf Mon Sep 17 00:00:00 2001 From: Gaming4JC Date: Sun, 5 Jan 2020 10:30:04 -0500 Subject: Bug 1299363 - Part 3: Remove unused argument in UpgradeCandidates. Tag UXP Issue #1344 --- dom/base/CustomElementRegistry.cpp | 5 ++--- dom/base/CustomElementRegistry.h | 3 +-- 2 files changed, 3 insertions(+), 5 deletions(-) (limited to 'dom') diff --git a/dom/base/CustomElementRegistry.cpp b/dom/base/CustomElementRegistry.cpp index bd26e4ff3..82f15f683 100644 --- a/dom/base/CustomElementRegistry.cpp +++ b/dom/base/CustomElementRegistry.cpp @@ -408,8 +408,7 @@ CustomElementRegistry::GetCustomPrototype(nsIAtom* aAtom, } void -CustomElementRegistry::UpgradeCandidates(JSContext* aCx, - nsIAtom* aKey, +CustomElementRegistry::UpgradeCandidates(nsIAtom* aKey, CustomElementDefinition* aDefinition, ErrorResult& aRv) { @@ -719,7 +718,7 @@ CustomElementRegistry::Define(const nsAString& aName, * 13. 14. 15. Upgrade candidates */ // TODO: Bug 1299363 - Implement custom element v1 upgrade algorithm - UpgradeCandidates(cx, nameAtom, definition, aRv); + UpgradeCandidates(nameAtom, definition, aRv); /** * 16. If this CustomElementRegistry's when-defined promise map contains an diff --git a/dom/base/CustomElementRegistry.h b/dom/base/CustomElementRegistry.h index 84a7fe3ac..db208bf71 100644 --- a/dom/base/CustomElementRegistry.h +++ b/dom/base/CustomElementRegistry.h @@ -346,8 +346,7 @@ private: void RegisterUnresolvedElement(Element* aElement, nsIAtom* aTypeName = nullptr); - void UpgradeCandidates(JSContext* aCx, - nsIAtom* aKey, + void UpgradeCandidates(nsIAtom* aKey, CustomElementDefinition* aDefinition, ErrorResult& aRv); -- cgit v1.2.3