diff options
Diffstat (limited to 'Userland/Libraries/LibWeb/FileAPI/Blob.h')
-rw-r--r-- | Userland/Libraries/LibWeb/FileAPI/Blob.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibWeb/FileAPI/Blob.h b/Userland/Libraries/LibWeb/FileAPI/Blob.h index f3d482eb0a..9abbf258c8 100644 --- a/Userland/Libraries/LibWeb/FileAPI/Blob.h +++ b/Userland/Libraries/LibWeb/FileAPI/Blob.h @@ -53,7 +53,7 @@ protected: Blob(JS::Realm&, ByteBuffer, DeprecatedString type); Blob(JS::Realm&, ByteBuffer); - virtual void initialize(JS::Realm&) override; + virtual JS::ThrowCompletionOr<void> initialize(JS::Realm&) override; private: explicit Blob(JS::Realm&); |