mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
d6abfbdc5a
Now that CObject is fully ref-counted, just use RefPtr everywhere! :^)
35 lines
599 B
C++
35 lines
599 B
C++
#pragma once
|
|
|
|
#include <AK/String.h>
|
|
#include <AK/URL.h>
|
|
|
|
class CNetworkJob;
|
|
|
|
class CHttpRequest {
|
|
public:
|
|
enum Method {
|
|
Invalid,
|
|
HEAD,
|
|
GET,
|
|
POST
|
|
};
|
|
|
|
CHttpRequest();
|
|
~CHttpRequest();
|
|
|
|
const URL& url() const { return m_url; }
|
|
void set_url(const URL& url) { m_url = url; }
|
|
|
|
Method method() const { return m_method; }
|
|
void set_method(Method method) { m_method = method; }
|
|
|
|
String method_name() const;
|
|
ByteBuffer to_raw_request() const;
|
|
|
|
RefPtr<CNetworkJob> schedule();
|
|
|
|
private:
|
|
URL m_url;
|
|
Method m_method { GET };
|
|
};
|