mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 14:57:35 +00:00
LibProtocol: Rename namespace LibProtocol => Protocol
This commit is contained in:
parent
f6ce24eb48
commit
5b7924b9e7
7 changed files with 9 additions and 9 deletions
|
@ -39,7 +39,7 @@ ResourceLoader& ResourceLoader::the()
|
|||
}
|
||||
|
||||
ResourceLoader::ResourceLoader()
|
||||
: m_protocol_client(LibProtocol::Client::construct())
|
||||
: m_protocol_client(Protocol::Client::construct())
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
#include <AK/URL.h>
|
||||
#include <LibCore/CObject.h>
|
||||
|
||||
namespace LibProtocol {
|
||||
namespace Protocol {
|
||||
class Client;
|
||||
}
|
||||
|
||||
|
@ -50,6 +50,6 @@ private:
|
|||
|
||||
int m_pending_loads { 0 };
|
||||
|
||||
LibProtocol::Client& protocol_client() { return *m_protocol_client; }
|
||||
RefPtr<LibProtocol::Client> m_protocol_client;
|
||||
Protocol::Client& protocol_client() { return *m_protocol_client; }
|
||||
RefPtr<Protocol::Client> m_protocol_client;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue