1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-24 23:07:34 +00:00

LibWeb: Port WebGLRenderingContext IDL from DeprecatedString to String

This commit is contained in:
Shannon Booth 2023-08-26 17:32:20 +12:00 committed by Andrew Kaster
parent cf733d309e
commit e8d592ded2
3 changed files with 7 additions and 7 deletions

View file

@ -29,8 +29,8 @@ public:
bool is_context_lost() const;
Optional<Vector<DeprecatedString>> get_supported_extensions() const;
JS::Object* get_extension(DeprecatedString const& name) const;
Optional<Vector<String>> get_supported_extensions() const;
JS::Object* get_extension(String const& name) const;
void active_texture(GLenum texture);