net: Remove process_request_eof (#43477)

This is no longer present in the spec. Instead, the
`process_request_body` is the new way. These two
methods were called right after each other and there was only 1
implementation in `htmlvideoelement`. That implementation is now moved
to `process_request_body` and hence we can remove the unnecessary
method.

Testing: It compiles

Signed-off-by: Tim van der Lippe <tvanderlippe@gmail.com>
This commit is contained in:
Tim van der Lippe
2026-03-20 11:51:33 +01:00
committed by GitHub
parent e0fc0174fa
commit 3d4cfa4718
27 changed files with 4 additions and 73 deletions

View File

@@ -3875,8 +3875,7 @@ impl ScriptThread {
FetchResponseMsg::ProcessCspViolations(request_id, violations) => {
self.handle_csp_violations(pipeline_id, request_id, violations)
},
FetchResponseMsg::ProcessRequestBody(..) | FetchResponseMsg::ProcessRequestEOF(..) => {
},
FetchResponseMsg::ProcessRequestBody(..) => {},
}
}