Profiler: Move everything into the "Profiler" namespace

This commit is contained in:
Andreas Kling 2021-05-04 17:45:02 +02:00
commit dbbc6096a9
Notes: sideshowbarker 2024-07-18 18:43:08 +09:00
17 changed files with 66 additions and 0 deletions

View file

@ -12,6 +12,8 @@
#include <AK/Vector.h>
#include <LibELF/Image.h>
namespace Profiler {
struct MappedObject {
NonnullRefPtr<MappedFile> file;
ELF::Image elf;
@ -66,3 +68,5 @@ struct Process {
return timestamp >= start_valid && (end_valid == 0 || timestamp <= end_valid);
}
};
}