mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-20 18:12:53 +00:00
LibWeb: Make HTML::Task IDs a sequential, distinct numeric type
This also fixes a bug where task IDs were being deallocated from the wrong IDAllocator. I don't know if it was actually possible to cause any real trouble with that mistake, nor do I know how to write a test for it, but this makes the bug go away.
This commit is contained in:
parent
0e1256e5a4
commit
08d60d7521
Notes:
github-actions[bot]
2024-08-05 07:12:59 +00:00
Author: https://github.com/awesomekling
Commit: 08d60d7521
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/962
12 changed files with 33 additions and 29 deletions
|
@ -16,6 +16,7 @@
|
|||
#include <LibJS/SafeFunction.h>
|
||||
#include <LibWeb/Fetch/Infrastructure/FetchTimingInfo.h>
|
||||
#include <LibWeb/Forward.h>
|
||||
#include <LibWeb/HTML/EventLoop/Task.h>
|
||||
|
||||
namespace Web::Fetch::Infrastructure {
|
||||
|
||||
|
@ -50,7 +51,7 @@ public:
|
|||
void stop_fetch();
|
||||
|
||||
u64 next_fetch_task_id() { return m_next_fetch_task_id++; }
|
||||
void fetch_task_queued(u64 fetch_task_id, int event_id);
|
||||
void fetch_task_queued(u64 fetch_task_id, HTML::TaskID event_id);
|
||||
void fetch_task_complete(u64 fetch_task_id);
|
||||
|
||||
private:
|
||||
|
@ -84,7 +85,7 @@ private:
|
|||
|
||||
JS::GCPtr<FetchParams> m_fetch_params;
|
||||
|
||||
HashMap<u64, int> m_ongoing_fetch_tasks;
|
||||
HashMap<u64, HTML::TaskID> m_ongoing_fetch_tasks;
|
||||
u64 m_next_fetch_task_id { 0 };
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue