LibWeb: Move TransformStream AOs into their own file

The main streams AO file has gotten very large, and is a bit difficult
to navigate. In an effort to improve DX, this migrates TransformStream
AOs to their own file.
This commit is contained in:
Timothy Flynn 2025-04-17 20:02:23 -04:00 committed by Tim Flynn
parent 26c01f0957
commit 3e8c6dbaff
Notes: github-actions[bot] 2025-04-18 10:56:41 +00:00
10 changed files with 626 additions and 594 deletions

View file

@ -57,9 +57,9 @@
#include <LibWeb/ResourceTiming/PerformanceResourceTiming.h>
#include <LibWeb/SRI/SRI.h>
#include <LibWeb/SecureContexts/AbstractOperations.h>
#include <LibWeb/Streams/AbstractOperations.h>
#include <LibWeb/Streams/TransformStream.h>
#include <LibWeb/Streams/TransformStreamDefaultController.h>
#include <LibWeb/Streams/TransformStreamOperations.h>
#include <LibWeb/Streams/Transformer.h>
#include <LibWeb/WebIDL/DOMException.h>