mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-25 14:05:15 +00:00
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.
31 lines
837 B
C++
31 lines
837 B
C++
/*
|
|
* Copyright (c) 2023, Tim Flynn <trflynn89@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/HashMap.h>
|
|
#include <AK/String.h>
|
|
#include <LibJS/Heap/GCPtr.h>
|
|
#include <LibJS/Heap/Handle.h>
|
|
#include <LibWeb/Forward.h>
|
|
|
|
namespace Web::FileAPI {
|
|
|
|
// https://w3c.github.io/FileAPI/#blob-url-entry
|
|
struct BlobURLEntry {
|
|
JS::Handle<Blob> object; // FIXME: This could also be a MediaSource after we implement MSE.
|
|
JS::Handle<HTML::EnvironmentSettingsObject> environment;
|
|
};
|
|
|
|
// https://w3c.github.io/FileAPI/#BlobURLStore
|
|
using BlobURLStore = HashMap<String, BlobURLEntry>;
|
|
|
|
BlobURLStore& blob_url_store();
|
|
ErrorOr<String> generate_new_blob_url();
|
|
ErrorOr<String> add_entry_to_blob_url_store(JS::NonnullGCPtr<Blob> object);
|
|
ErrorOr<void> remove_entry_from_blob_url_store(StringView url);
|
|
|
|
}
|