1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 06:37:35 +00:00

LibProtocol: Change RequestClient.{cpp,h} to use east const style

This commit is contained in:
Max Wipfli 2021-06-05 11:57:14 +02:00 committed by Andreas Kling
parent 3c2a6a25da
commit 5b5f7bc360
2 changed files with 6 additions and 6 deletions

View file

@ -22,7 +22,7 @@ class RequestClient final
public:
template<typename RequestHashMapTraits = Traits<String>>
RefPtr<Request> start_request(const String& method, const String& url, const HashMap<String, String, RequestHashMapTraits>& request_headers = {}, ReadonlyBytes request_body = {});
RefPtr<Request> start_request(String const& method, String const& url, HashMap<String, String, RequestHashMapTraits> const& request_headers = {}, ReadonlyBytes request_body = {});
bool stop_request(Badge<Request>, Request&);
bool set_certificate(Badge<Request>, Request&, String, String);