mirror of
https://github.com/servo/servo
synced 2026-04-26 01:25:32 +02:00
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:
committed by
GitHub
parent
e0fc0174fa
commit
3d4cfa4718
@@ -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(..) => {},
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user