LibWeb: Port DOMParser interface from DeprecatedString to String

This commit is contained in:
Shannon Booth 2023-09-06 14:23:00 +12:00 committed by Tim Flynn
commit 8531d11fab
Notes: sideshowbarker 2024-07-17 14:33:07 +09:00
3 changed files with 5 additions and 5 deletions

View file

@ -23,7 +23,7 @@ public:
virtual ~DOMParser() override;
JS::NonnullGCPtr<DOM::Document> parse_from_string(DeprecatedString const&, Bindings::DOMParserSupportedType type);
JS::NonnullGCPtr<DOM::Document> parse_from_string(StringView, Bindings::DOMParserSupportedType type);
private:
explicit DOMParser(JS::Realm&);