mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-23 09:46:04 -05:00
15 lines
225 B
C
15 lines
225 B
C
|
#pragma once
|
||
|
|
||
|
#include <AK/Function.h>
|
||
|
#include <AK/URL.h>
|
||
|
|
||
|
class ResourceLoader {
|
||
|
public:
|
||
|
static ResourceLoader& the();
|
||
|
|
||
|
void load(const URL&, Function<void(const ByteBuffer&)>);
|
||
|
|
||
|
private:
|
||
|
ResourceLoader() {}
|
||
|
};
|