LibWeb: Introduce the File interface from the FileAPI spec

This commit is contained in:
Kenneth Myhra 2022-07-24 21:32:18 +02:00 committed by Linus Groh
commit 890514a057
Notes: sideshowbarker 2024-07-17 08:33:05 +09:00
9 changed files with 139 additions and 0 deletions

View file

@ -54,6 +54,9 @@ public:
ReadonlyBytes bytes() const { return m_byte_buffer.bytes(); }
protected:
Blob(ByteBuffer byte_buffer);
private:
Blob() = default;