WindowServer: Add missing includes

This remained undetected for a long time as HeaderCheck is disabled by
default. This commit makes the following file compile again:

    // file: compile_me.cpp
    #include <WindowServer/SystemEffects.h>
    // That's it, this was enough to cause a compilation error.
This commit is contained in:
Ben Wiederhake 2022-09-13 17:42:39 +02:00 committed by Tim Flynn
parent 87eac0e424
commit 929e46f360

View file

@ -6,7 +6,9 @@
#pragma once
#include <AK/StringView.h>
#include <AK/Types.h>
#include <AK/Vector.h>
namespace WindowServer {