1
Fork 0
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:
Andreas Kling 2019-04-08 02:24:34 +02:00
parent 37ae00a4dd
commit 7fcca0ce4b
4 changed files with 15 additions and 16 deletions

View file

@ -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;
}