mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-27 18:17:22 +02:00
Everywhere: Change west consts caught by clang-format-21 to east consts
This commit is contained in:
committed by
Tim Ledbetter
parent
829437c11d
commit
b17783bb10
Notes:
github-actions[bot]
2025-08-29 17:20:11 +00:00
Author: https://github.com/Lubrsi Commit: https://github.com/LadybirdBrowser/ladybird/commit/b17783bb105 Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/6023 Reviewed-by: https://github.com/tcl3 ✅
@@ -467,13 +467,13 @@ Optional<URL::URL> parse(StringView input, Optional<URL::URL const&> base_url, O
|
||||
if (blob_url_entry.has_value()) {
|
||||
url->set_blob_url_entry(URL::BlobURLEntry {
|
||||
.object = blob_url_entry->object.visit(
|
||||
[](const GC::Root<FileAPI::Blob>& blob) -> URL::BlobURLEntry::Object {
|
||||
[](GC::Root<FileAPI::Blob> const& blob) -> URL::BlobURLEntry::Object {
|
||||
return URL::BlobURLEntry::Blob {
|
||||
.type = blob->type(),
|
||||
.data = MUST(ByteBuffer::copy(blob->raw_bytes())),
|
||||
};
|
||||
},
|
||||
[](const GC::Root<MediaSourceExtensions::MediaSource>&) -> URL::BlobURLEntry::Object { return URL::BlobURLEntry::MediaSource {}; }),
|
||||
[](GC::Root<MediaSourceExtensions::MediaSource> const&) -> URL::BlobURLEntry::Object { return URL::BlobURLEntry::MediaSource {}; }),
|
||||
.environment { .origin = blob_url_entry->environment->origin() },
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user