LibWeb: Start adding infrastructure for an HTTP Cache

This commit is contained in:
Andrew Kaster 2024-05-21 10:38:10 -06:00 committed by Tim Flynn
commit c05f296014
Notes: sideshowbarker 2024-07-16 22:11:09 +09:00
2 changed files with 133 additions and 7 deletions

View file

@ -33,7 +33,7 @@ struct Header {
// A header list is a list of zero or more headers. It is initially the empty list.
class HeaderList final
: public JS::Cell
, Vector<Header> {
, public Vector<Header> {
JS_CELL(HeaderList, JS::Cell);
JS_DECLARE_ALLOCATOR(HeaderList);