mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 11:28:12 +00:00
GHttp: Rename GHttpNetworkJob => GHttpJob. And tidy up a little bit.
This commit is contained in:
parent
37ae00a4dd
commit
7fcca0ce4b
4 changed files with 15 additions and 16 deletions
|
@ -1,5 +1,5 @@
|
|||
#include <LibGUI/GHttpRequest.h>
|
||||
#include <LibGUI/GHttpNetworkJob.h>
|
||||
#include <LibGUI/GHttpJob.h>
|
||||
#include <LibGUI/GEventLoop.h>
|
||||
#include <AK/StringBuilder.h>
|
||||
|
||||
|
@ -13,7 +13,7 @@ GHttpRequest::~GHttpRequest()
|
|||
|
||||
GNetworkJob* GHttpRequest::schedule()
|
||||
{
|
||||
auto* job = new GHttpNetworkJob(*this);
|
||||
auto* job = new GHttpJob(*this);
|
||||
job->start();
|
||||
return job;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue