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

LibWeb: Implement an ephemeral Blob URL store

The Blob URL store is intended to be a singleton across all WebContent
instances. But for now, this implements a per-WebContent store, which
only lives as long as the WebContent process itself.
This commit is contained in:
Timothy Flynn 2023-08-01 18:29:54 -04:00 committed by Linus Groh
parent 2ce416a676
commit b3f82f724d
3 changed files with 124 additions and 0 deletions

View file

@ -206,6 +206,7 @@ set(SOURCES
Fetch/Request.cpp
Fetch/Response.cpp
FileAPI/Blob.cpp
FileAPI/BlobURLStore.cpp
FileAPI/File.cpp
FileAPI/FileList.cpp
FontCache.cpp