Skip to content

Commit

Permalink
Foxhound: post merge build fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
tmbrbr committed Jan 17, 2024
1 parent 36d5692 commit 8360a69
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
3 changes: 0 additions & 3 deletions dom/html/HTMLScriptElement.h
Original file line number Diff line number Diff line change
Expand Up @@ -149,9 +149,6 @@ class HTMLScriptElement final : public nsGenericHTMLElement,
[[nodiscard]] static bool Supports(const GlobalObject& aGlobal,
const nsAString& aType);

virtual void SetTextContentInternal(const nsAString& aTextContent,
nsIPrincipal* aSubjectPrincipal,
mozilla::ErrorResult& aError) override;
protected:
virtual ~HTMLScriptElement();

Expand Down
4 changes: 2 additions & 2 deletions js/src/builtin/JSON.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1877,9 +1877,9 @@ static bool Revive(JSContext* cx, HandleValue reviver, MutableHandleValue vp) {
}

template <typename CharT>
bool ParseJSON(JSContext* cx, const mozilla::Range<const CharT> chars,
bool ParseJSON(JSContext* cx, const mozilla::Range<const CharT> chars, const StringTaint& aTaint,
MutableHandleValue vp) {
Rooted<JSONParser<CharT>> parser(cx, cx, chars, aTaint
Rooted<JSONParser<CharT>> parser(cx, cx, chars, aTaint,
JSONParser<CharT>::ParseType::JSONParse);
return parser.parse(vp);
}
Expand Down

0 comments on commit 8360a69

Please sign in to comment.