mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-02 15:46:33 +00:00
LibWeb: Start adding infrastructure for an HTTP Cache
This commit is contained in:
parent
a40b331f39
commit
c05f296014
Notes:
sideshowbarker
2024-07-16 22:11:09 +09:00
Author: https://github.com/ADKaster
Commit: c05f296014
Pull-request: https://github.com/SerenityOS/serenity/pull/24406
Reviewed-by: https://github.com/alimpfard
Reviewed-by: https://github.com/trflynn89 ✅
2 changed files with 133 additions and 7 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue