1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 11:17:43 +00:00

LibWeb: Make File a Serializable object

This commit is contained in:
Kenneth Myhra 2024-02-23 22:14:18 +01:00 committed by Andrew Kaster
parent 44e5c62545
commit 0b64a71603
4 changed files with 74 additions and 5 deletions

View file

@ -66,11 +66,11 @@ protected:
virtual void initialize(JS::Realm&) override;
private:
explicit Blob(JS::Realm&);
ByteBuffer m_byte_buffer {};
String m_type {};
private:
explicit Blob(JS::Realm&);
};
}