mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 06:38:10 +00:00
LibWeb: Port LegacyPlatformObject from DeprecatedString to String
This commit is contained in:
parent
56d10bf198
commit
f43313d099
6 changed files with 32 additions and 30 deletions
|
@ -24,10 +24,10 @@ public:
|
|||
|
||||
DeprecatedString determine_value_of_named_property(DeprecatedString const&) const;
|
||||
|
||||
virtual WebIDL::ExceptionOr<void> set_value_of_new_named_property(DeprecatedString const&, JS::Value) override;
|
||||
virtual WebIDL::ExceptionOr<void> set_value_of_existing_named_property(DeprecatedString const&, JS::Value) override;
|
||||
virtual WebIDL::ExceptionOr<void> set_value_of_new_named_property(String const&, JS::Value) override;
|
||||
virtual WebIDL::ExceptionOr<void> set_value_of_existing_named_property(String const&, JS::Value) override;
|
||||
|
||||
virtual WebIDL::ExceptionOr<DidDeletionFail> delete_value(DeprecatedString const&) override;
|
||||
virtual WebIDL::ExceptionOr<DidDeletionFail> delete_value(String const&) override;
|
||||
|
||||
private:
|
||||
explicit DOMStringMap(DOM::Element&);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue